diff options
-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); } |