aboutsummaryrefslogtreecommitdiff
path: root/src/userspace/libc/string/strcat.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/userspace/libc/string/strcat.c')
-rw-r--r--src/userspace/libc/string/strcat.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/userspace/libc/string/strcat.c b/src/userspace/libc/string/strcat.c
index f62d6e2..bb8f09b 100644
--- a/src/userspace/libc/string/strcat.c
+++ b/src/userspace/libc/string/strcat.c
@@ -3,10 +3,10 @@
void strcat(char *dest, char *orig)
{
- u8 s_dest = strlen(dest);
- u8 s_orig = strlen(orig);
+ u32 s_dest = strlen(dest);
+ u32 s_orig = strlen(orig);
- for (u8 i = 0; i < s_orig; i++)
+ for (u32 i = 0; i < s_orig; i++)
dest[s_dest + i] = orig[i];
dest[s_dest + s_orig] = 0;
} \ No newline at end of file