aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/lib/stdio
diff options
context:
space:
mode:
authorMarvin Borner2020-05-13 21:28:56 +0200
committerMarvin Borner2020-05-13 22:12:41 +0200
commita9c7529dcca845d98192ece62be70f752972216b (patch)
tree666d49ceb411a669abe6191151b2238fd7156c30 /src/kernel/lib/stdio
parente1a6ed079303dc7d218f1d5326a13b6755781271 (diff)
Replaced alloc.h with liballoc
And many more adaptions to the lib
Diffstat (limited to 'src/kernel/lib/stdio')
-rw-r--r--src/kernel/lib/stdio/debug.c4
-rw-r--r--src/kernel/lib/stdio/vprintf.c4
2 files changed, 4 insertions, 4 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));
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));