add braces to single statements so drkhsh doesn't be upset
This commit is contained in:
parent
cfb4a5d3ff
commit
b231cd90eb
1 changed files with 2 additions and 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);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue