summaryrefslogtreecommitdiffstats
path: root/log.c
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2022-04-06 16:39:46 +0100
committerNicholas Marriott <nicholas.marriott@gmail.com>2022-04-06 16:39:46 +0100
commit3a6d82b7c8d4254fa87959d8cf19b313f5e05480 (patch)
tree8a9017893248fb45ad0d6eae473245f1b8a73bfb /log.c
parent0c84a20d2f44db64057f806c270ab1d751030fc1 (diff)
Some style nits.
Diffstat (limited to 'log.c')
-rw-r--r--log.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/log.c b/log.c
index d4436672..0e0d1d1a 100644
--- a/log.c
+++ b/log.c
@@ -143,7 +143,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);