Spacing/style nits.

This commit is contained in:
nicm
2022-05-30 12:55:25 +00:00
parent af611815ea
commit 0a8f356c72
12 changed files with 218 additions and 16 deletions

2
log.c
View File

@ -144,7 +144,7 @@ fatal(const char *msg, ...)
va_list ap;
if (snprintf(tmp, sizeof tmp, "fatal: %s: ", strerror(errno)) < 0)
exit (1);
exit(1);
va_start(ap, msg);
log_vwrite(msg, ap, tmp);