summaryrefslogtreecommitdiffstats
path: root/log.c
diff options
context:
space:
mode:
authornicm <nicm>2021-09-10 14:22:24 +0000
committernicm <nicm>2021-09-10 14:22:24 +0000
commit33ac7a346e9134e27d26c88fc0693f16b1c55deb (patch)
treeebddf1082bc84e2e1fb6f63e61bea175756ff482 /log.c
parent5cdc1bdd32f1500beb01bfc632e314d784a07082 (diff)
Get rid of the last two warnings by turning them off around the problem
statements, if the compiler supports it.
Diffstat (limited to 'log.c')
-rw-r--r--log.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/log.c b/log.c
index ec54711a..d4808427 100644
--- a/log.c
+++ b/log.c
@@ -147,7 +147,7 @@ fatal(const char *msg, ...)
va_start(ap, msg);
if (asprintf(&fmt, "fatal: %s: %s", msg, strerror(errno)) == -1)
exit(1);
- log_vwrite(fmt, ap);
+ no_format_nonliteral(log_vwrite(fmt, ap));
va_end(ap);
exit(1);
}
@@ -162,7 +162,7 @@ fatalx(const char *msg, ...)
va_start(ap, msg);
if (asprintf(&fmt, "fatal: %s", msg) == -1)
exit(1);
- log_vwrite(fmt, ap);
+ no_format_nonliteral(log_vwrite(fmt, ap));
va_end(ap);
exit(1);
}