slstatus

My fork of https://tools.suckless.org/slstatus/
git clone https://git.inz.fi/slstatus
Log | Files | Refs | README | LICENSE

commit 932f65c37388220298b44c65e601c593e4e40b9e
parent ee5ec756218c852385c5ba5ef0f75b47ba59ec39
Author: Aaron Marcher <me@drkhsh.at>
Date:   Sun,  6 May 2018 22:38:29 +0200

datetime: Add error message

Diffstat:
Mcomponents/datetime.c | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/components/datetime.c b/components/datetime.c @@ -10,6 +10,7 @@ datetime(const char *fmt) t = time(NULL); if (!strftime(buf, sizeof(buf), fmt, localtime(&t))) { + fprintf(stderr, "strftime: Result string exceeds buffer size\n"); return NULL; }