diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2022-05-30 12:55:26 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2022-05-30 12:55:26 +0000 |
commit | afbcc86407a6aa585a859d8d42a1862b2a998ed6 (patch) | |
tree | cad7dae0772e870550ff3344870f6748eba69a1a /usr.bin/tmux/log.c | |
parent | 3287dab9dc5ce4e28553513a3f6562a09c271b11 (diff) |
Spacing/style nits.
Diffstat (limited to 'usr.bin/tmux/log.c')
-rw-r--r-- | usr.bin/tmux/log.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/tmux/log.c b/usr.bin/tmux/log.c index 41e6629c9c0..8249b66ba5b 100644 --- a/usr.bin/tmux/log.c +++ b/usr.bin/tmux/log.c @@ -1,4 +1,4 @@ -/* $OpenBSD: log.c,v 1.30 2021/09/10 15:03:18 nicm Exp $ */ +/* $OpenBSD: log.c,v 1.31 2022/05/30 12:55:25 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicholas.marriott@gmail.com> @@ -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); |