diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/util.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -16,19 +16,19 @@ void die(const char* fmt, ...) { void log_inf(const char* fmt, ...) { va_list ap; - fprintf(stderr, "[\e[34m==\e[0m] "); + fprintf(stdout, "[\e[34m==\e[0m] "); va_start(ap, fmt); - vfprintf(stderr, fmt, ap); + vfprintf(stdout, fmt, ap); va_end(ap); - fprintf(stderr, "\n"); + fprintf(stdout, "\n"); } void log_raw(const char* fmt, ...) { va_list ap; va_start(ap, fmt); - vfprintf(stderr, fmt, ap); + vfprintf(stdout, fmt, ap); va_end(ap); } |