summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGhostNaN <GhostNaN@protonmail.com>2020-08-10 11:41:31 -0400
committerGhostNaN <GhostNaN@protonmail.com>2020-08-10 11:41:31 -0400
commite514de49985c4ecc5438923dbe919be2c7445344 (patch)
tree94c1323a80710a91d98cee6f5427ab075b609ed7
parentc4b5899be05586ebea69c1f296f1b98cb903697d (diff)
stderr was not playing niceclassic
-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);