diff options
| author | raiz <raiz@firemail.cc> | 2016-12-29 12:40:43 +0300 |
|---|---|---|
| committer | raiz <raiz@firemail.cc> | 2016-12-29 12:40:43 +0300 |
| commit | b231cd90ebe54eef8649996fc80cabc3a420c9e5 (patch) | |
| tree | d193dc167f43171f97ebd4e038ca46afae1dfe68 | |
| parent | cfb4a5d3ffeec74722101f394a1a3f0856217210 (diff) | |
| download | slstatus-b231cd90ebe54eef8649996fc80cabc3a420c9e5.tar.gz | |
add braces to single statements so drkhsh doesn't be upset
| -rw-r--r-- | slstatus.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -820,8 +820,9 @@ main(int argc, char *argv[]) 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); } |
