diff options
author | nicm <nicm> | 2022-05-30 12:55:25 +0000 |
---|---|---|
committer | nicm <nicm> | 2022-05-30 12:55:25 +0000 |
commit | 0a8f356c7278dba34a526adea03561f2063df359 (patch) | |
tree | 94ec991bb58019e824a6142f8711aa982d91a24c /log.c | |
parent | af611815ea70d687a15e20426ed1b88017d3d248 (diff) | |
download | rtmux-0a8f356c7278dba34a526adea03561f2063df359.tar.gz rtmux-0a8f356c7278dba34a526adea03561f2063df359.tar.bz2 rtmux-0a8f356c7278dba34a526adea03561f2063df359.zip |
Spacing/style nits.
Diffstat (limited to 'log.c')
-rw-r--r-- | log.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); |