summaryrefslogtreecommitdiffstats
path: root/lib/vsprintf.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/vsprintf.c')
-rw-r--r--lib/vsprintf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/vsprintf.c b/lib/vsprintf.c
index c6fbfe35dd..aa6aa241a3 100644
--- a/lib/vsprintf.c
+++ b/lib/vsprintf.c
@@ -370,7 +370,7 @@ void panic(const char *fmt, ...)
va_list args;
va_start(args, fmt);
vprintf(fmt, args);
- putc('\n');
+ putchar('\n');
va_end(args);
#if defined (CONFIG_PANIC_HANG)
hang();