diff options
Diffstat (limited to 'firmware/common/strlcpy.c')
-rw-r--r-- | firmware/common/strlcpy.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/common/strlcpy.c b/firmware/common/strlcpy.c index bfdb6482a4..5107ea1207 100644 --- a/firmware/common/strlcpy.c +++ b/firmware/common/strlcpy.c @@ -34,6 +34,6 @@ size_t strlcpy(char *dst, const char *src, size_t siz) if (d) return (d - dst - 1); /* count does not include NUL */ - /* Not enough room in dst, add NUL and traverse rest of src */ + /* Not enough room in dst, traverse rest of src */ return(siz + strlen(src+siz)); /* count does not include NUL */ } |