diff options
Diffstat (limited to 'strings/strmake.c')
-rw-r--r-- | strings/strmake.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/strings/strmake.c b/strings/strmake.c index 2e384fc168a..d2252f648f6 100644 --- a/strings/strmake.c +++ b/strings/strmake.c @@ -21,7 +21,7 @@ strmake(dst,src,length) moves length characters, or until end, of src to dst and appends a closing NUL to dst. - Note that is strlen(src) >= length then dst[length] will be set to \0 + Note that if strlen(src) >= length then dst[length] will be set to \0 strmake() returns pointer to closing null */ |