aboutsummaryrefslogtreecommitdiff
path: root/log.c
diff options
context:
space:
mode:
authorOmar Polo <op@omarpolo.com>2021-07-06 10:56:13 +0000
committerOmar Polo <op@omarpolo.com>2021-07-06 10:56:13 +0000
commit7700ab07d3a97459e8d294f0ee672d7eaed67b85 (patch)
tree0ccbed4cf72c5a754251a4dbe5d13aae4db3e896 /log.c
parent59c7ee13b474c7929914075b01cd3593b1beaca7 (diff)
fmt
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 7bc6bf1..9d0e267 100644
--- a/log.c
+++ b/log.c
@@ -131,7 +131,7 @@ vlog(int priority, struct client *c,
if (vasprintf(&fmted, fmt, ap) == -1)
fatal("vasprintf: %s", strerror(errno));
- if (c == NULL)
+ if (c == NULL)
ec = asprintf(&s, "internal: %s", fmted);
else
ec = asprintf(&s, "%s:%s %s", hbuf, sbuf, fmted);