diff options
Diffstat (limited to 'logging.c')
-rw-r--r-- | logging.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -70,7 +70,7 @@ WEAK_FUNCTION void hal_log(const hal_log_level_t level, const char *format, ...) va_list ap; va_start(ap, format); - vfnprintf(stderr, format, ap); + vfprintf(stderr, format, ap); va_end(ap); fprintf(stderr, "\n"); } |