diff options
author | Rob Austein <sra@hactrn.net> | 2017-04-15 16:45:25 -0400 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2017-04-15 16:45:25 -0400 |
commit | 3e9a6bb6452cbe402291a8bc98bc42c7163d194e (patch) | |
tree | 85fa61806228e326cf6977c44b4e70823b480244 /logging.c | |
parent | 7c8dd2672337a760477049e9f6196054332e4f5a (diff) |
Typo.
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"); } |