summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/cflogprinter.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cflogprinter.c b/src/cflogprinter.c
index f995609..7f2a888 100644
--- a/src/cflogprinter.c
+++ b/src/cflogprinter.c
@@ -19,7 +19,7 @@ void cflp_error(char *msg, ...) {
va_list arg;
va_start (arg, msg);
- vfprintf (stderr, msg, arg); //print to stderr instead of stdout!
+ vfprintf (stdout, msg, arg);
va_end (arg);
printf("%s\n", RESET);