diff options
Diffstat (limited to 'libc/string/strncat.c')
-rw-r--r-- | libc/string/strncat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/string/strncat.c b/libc/string/strncat.c index 1cb9405..c4df4f2 100644 --- a/libc/string/strncat.c +++ b/libc/string/strncat.c @@ -52,6 +52,6 @@ strncat(char *dst, const char *src, size_t n) d++; } while (--n != 0); *d = 0; - } + } return (dst); } |