braces for one line statements in smprintf()
This commit is contained in:
parent
bad8dc682d
commit
c5ace949e4
|
@ -88,8 +88,9 @@ smprintf(const char *fmt, ...)
|
||||||
va_end(ap);
|
va_end(ap);
|
||||||
|
|
||||||
ret = malloc(++len);
|
ret = malloc(++len);
|
||||||
if (ret == NULL)
|
if (ret == NULL) {
|
||||||
err(1, "malloc");
|
err(1, "malloc");
|
||||||
|
}
|
||||||
|
|
||||||
va_start(ap, fmt);
|
va_start(ap, fmt);
|
||||||
vsnprintf(ret, len, fmt, ap);
|
vsnprintf(ret, len, fmt, ap);
|
||||||
|
|
Loading…
Reference in New Issue