From d94ffac4a584dc7a4f6f2ec567b8caab05ce9253 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Wed, 6 May 2020 19:04:05 +0200 Subject: New build parameters and shared includes This changes many files but I've just applied some replace commands.. So - nothing special! --- src/kernel/lib/stdio/vprintf.c | 14 +++++++------- 1 file changed, 7 insertions(+), 7 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 2431a48..15d210a 100644 --- a/src/kernel/lib/stdio/vprintf.c +++ b/src/kernel/lib/stdio/vprintf.c @@ -1,19 +1,19 @@ #include #include -#include -#include -#include -#include +#include +#include +#include +#include void _puts(const char *data) { - for (size_t i = 0; i < strlen(data); i++) + for (u32 i = 0; i < strlen(data); i++) putch(data[i]); } void vprintf(const char *fmt, va_list args) { - uint8_t readyToFormat = 0; + u8 readyToFormat = 0; char buff = 0; @@ -31,7 +31,7 @@ void vprintf(const char *fmt, va_list args) _puts(str); readyToFormat = 0; } else if (buff == 'x') { - char *p = htoa((uint32_t)va_arg(args, int)); + char *p = htoa((u32)va_arg(args, int)); _puts(p); kfree(p); readyToFormat = 0; -- cgit v1.2.3