From a9c7529dcca845d98192ece62be70f752972216b Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Wed, 13 May 2020 21:28:56 +0200 Subject: Replaced alloc.h with liballoc And many more adaptions to the lib --- src/kernel/lib/stdio/vprintf.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/kernel/lib/stdio/vprintf.c') diff --git a/src/kernel/lib/stdio/vprintf.c b/src/kernel/lib/stdio/vprintf.c index 37723b2..4c0c432 100644 --- a/src/kernel/lib/stdio/vprintf.c +++ b/src/kernel/lib/stdio/vprintf.c @@ -33,12 +33,12 @@ void vprintf(const char *fmt, va_list args) } else if (buff == 'x') { char *p = htoa((u32)va_arg(args, int)); _puts(p); - kfree(p); + free(p); readyToFormat = 0; } else if (buff == 'd') { char *p = itoa(va_arg(args, int)); _puts(p); - kfree(p); + free(p); readyToFormat = 0; } else if (buff == 'c') { putch((char)va_arg(args, int)); -- cgit v1.2.3