diff options
Diffstat (limited to 'src/kern/string.c')
-rw-r--r-- | src/kern/string.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/kern/string.c b/src/kern/string.c index 4afa228..ac2d763 100644 --- a/src/kern/string.c +++ b/src/kern/string.c @@ -2,8 +2,8 @@ void kstrcpy(char* into, const char* from) { - while(*from) { - *(into ++) = *(from ++); + while (*from) { + *(into++) = *(from++); } *into = 0; } |