From 0f54f0de1004c6e9a455c295dc76879ac37a408f Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Wed, 29 Apr 2020 21:16:56 +0200 Subject: Fixed several warnings, errors and dumb bugs --- src/userspace/libc/string/strcati.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/userspace/libc/string/strcati.c') diff --git a/src/userspace/libc/string/strcati.c b/src/userspace/libc/string/strcati.c index 5da986d..d82fbfc 100644 --- a/src/userspace/libc/string/strcati.c +++ b/src/userspace/libc/string/strcati.c @@ -3,8 +3,8 @@ void strcati(char *dest, char *orig) { - u8 s_orig = strlen(orig); + u32 s_orig = strlen(orig); strdisp(dest, (int)s_orig); - for (u8 i = 0; i < s_orig; i++) + for (u32 i = 0; i < s_orig; i++) dest[i] = orig[i]; } \ No newline at end of file -- cgit v1.2.3