diff options
Diffstat (limited to 'lib/libc/string/strcat.c')
| -rw-r--r-- | lib/libc/string/strcat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libc/string/strcat.c b/lib/libc/string/strcat.c index 343696719b71..95dcd1d7029c 100644 --- a/lib/libc/string/strcat.c +++ b/lib/libc/string/strcat.c @@ -45,6 +45,6 @@ strcat(s, append) char *save = s; for (; *s; ++s); - while (*s++ = *append++); + while ((*s++ = *append++)); return(save); } |
