diff options
author | Phil Jones <philj56@gmail.com> | 2021-11-07 18:12:52 +0000 |
---|---|---|
committer | Phil Jones <philj56@gmail.com> | 2021-11-07 18:12:52 +0000 |
commit | 9a0ee7624c19acf7fabb311e6c01c45cc72a1da3 (patch) | |
tree | dbbeb78b90d1722678878cd27c5dd0d2b984babe /src/log.c | |
parent | ae23e86114f559ce6d01a3e2499fc5417dc90d37 (diff) |
Initial working build.
Diffstat (limited to 'src/log.c')
-rw-r--r-- | src/log.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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); } |