diff options
Diffstat (limited to 'runit/svlogd.c')
-rw-r--r-- | runit/svlogd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runit/svlogd.c b/runit/svlogd.c index 25c169a..66a13fb 100644 --- a/runit/svlogd.c +++ b/runit/svlogd.c @@ -670,7 +670,7 @@ static unsigned logdir_open(struct logdir *ld, const char *fn) memRchr = memchr; /* Add '\n'-terminated line to ld->inst */ while (1) { - int l = asprintf(&new, "%s%s\n", ld->inst ? : "", s); + int l = asprintf(&new, "%s%s\n", ld->inst ? ld->inst : "", s); if (l >= 0 && new) break; pause_nomem(); |