aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/lib/stdio/debug.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/kernel/lib/stdio/debug.c')
-rw-r--r--src/kernel/lib/stdio/debug.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/kernel/lib/stdio/debug.c b/src/kernel/lib/stdio/debug.c
index 74eb594..3acb987 100644
--- a/src/kernel/lib/stdio/debug.c
+++ b/src/kernel/lib/stdio/debug.c
@@ -33,12 +33,12 @@ void serial_vprintf(const char *fmt, va_list args)
} else if (buff == 'x') {
char *p = htoa((u32)va_arg(args, int));
serial_print(p);
- kfree(p);
+ free(p);
readyToFormat = 0;
} else if (buff == 'd') {
char *p = itoa(va_arg(args, int));
serial_print(p);
- kfree(p);
+ free(p);
readyToFormat = 0;
} else if (buff == 'c') {
serial_put((char)va_arg(args, int));