From e514de49985c4ecc5438923dbe919be2c7445344 Mon Sep 17 00:00:00 2001 From: GhostNaN Date: Mon, 10 Aug 2020 11:41:31 -0400 Subject: stderr was not playing nice --- src/cflogprinter.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- cgit v1.2.3