all repos — slstatus @ b231cd90ebe54eef8649996fc80cabc3a420c9e5

my build of slstatus (tools.suckless.org/slstatus/)

add braces to single statements so drkhsh doesn't be upset
raiz raiz@firemail.cc
Thu, 29 Dec 2016 12:40:43 +0300
commit

b231cd90ebe54eef8649996fc80cabc3a420c9e5

parent

cfb4a5d3ffeec74722101f394a1a3f0856217210

1 files changed, 2 insertions(+), 1 deletions(-)

jump to
M slstatus.cslstatus.c

@@ -820,8 +820,9 @@ if (element == NULL) {

element = smprintf("%s", UNKNOWN_STR); warnx("Failed to format output"); } - if (strlcat(status_string, element, sizeof(status_string)) >= sizeof(status_string)) + if (strlcat(status_string, element, sizeof(status_string)) >= sizeof(status_string)) { warnx("Output too long"); + } free(res); free(element); }