diff options
author | June McEnroe <june@causal.agency> | 2020-03-31 18:54:37 -0400 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2020-03-31 18:54:37 -0400 |
commit | 5e3578a00f651d9ed04f6b9beda305408d6c09ce (patch) | |
tree | c5bfce5f19650285f235f5402ebacf814cb1bf46 | |
parent | Include <>/-/* around nicks in scoop coloring (diff) | |
download | litterbox-5e3578a00f651d9ed04f6b9beda305408d6c09ce.tar.gz litterbox-5e3578a00f651d9ed04f6b9beda305408d6c09ce.zip |
Fix writing verbose to stderr
Diffstat (limited to '')
-rw-r--r-- | litterbox.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/litterbox.c b/litterbox.c index b8bc25d..1591b39 100644 --- a/litterbox.c +++ b/litterbox.c @@ -54,7 +54,7 @@ static void format(const char *format, ...) { int len = vsnprintf(buf, sizeof(buf), format, ap); va_end(ap); assert((size_t)len < sizeof(buf)); - if (verbose) printf("%s", buf); + if (verbose) fprintf(stderr, "%s", buf); clientWrite(buf, len); } |