From 9a0ee7624c19acf7fabb311e6c01c45cc72a1da3 Mon Sep 17 00:00:00 2001 From: Phil Jones Date: Sun, 7 Nov 2021 18:12:52 +0000 Subject: Initial working build. --- src/log.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/log.c') diff --git a/src/log.c b/src/log.c index f7138c5..a6c9a75 100644 --- a/src/log.c +++ b/src/log.c @@ -59,8 +59,8 @@ void log_info(const char *const fmt, ...) { va_list args; va_start(args, fmt); - printf("[INFO]: "); - vprintf(fmt, args); + fprintf(stderr, "[INFO]: "); + vfprintf(stderr, fmt, args); va_end(args); } -- cgit v1.2.3