diff options
author | Marvin Borner | 2020-05-28 23:48:01 +0200 |
---|---|---|
committer | Marvin Borner | 2020-05-28 23:48:01 +0200 |
commit | e4b897bd9353990918225a34937cd8723b4e1538 (patch) | |
tree | 0b183483f12b5646f621b2b881a4e7a81bf91925 /src/kernel | |
parent | f600c79559892b73b019102478af501cf71fe6a4 (diff) |
Fixed clean buffer and added TODO :)
Diffstat (limited to 'src/kernel')
-rw-r--r-- | src/kernel/lib/stdio/vprintf.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/kernel/lib/stdio/vprintf.c b/src/kernel/lib/stdio/vprintf.c index 2351d39..3c4ecac 100644 --- a/src/kernel/lib/stdio/vprintf.c +++ b/src/kernel/lib/stdio/vprintf.c @@ -1,11 +1,14 @@ #include <lib/stdio.h> #include <lib/stdlib.h> +#include <lib/lib.h> #include <stdint.h> // TODO: Use global formatting function +// TODO: Fix fixed buffer size void vprintf(const char *fmt, va_list args) { char buf[1024]; + memset(buf, 0, 1024); vsprintf(buf, fmt, args); for (u32 i = 0; i < strlen(buf); i++) |