diff options
Diffstat (limited to 'common/stringhelp.c')
-rw-r--r-- | common/stringhelp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/common/stringhelp.c b/common/stringhelp.c index 235cbd3d2..842f6a14b 100644 --- a/common/stringhelp.c +++ b/common/stringhelp.c @@ -923,8 +923,8 @@ strsep (char **stringp, const char *delim) return NULL; /* A frequent case is when the delimiter string contains only one - character. Here we don't need to call the expensive `strpbrk' - function and instead work using `strchr'. */ + character. Here we don't need to call the expensive 'strpbrk' + function and instead work using 'strchr'. */ if (delim[0] == '\0' || delim[1] == '\0') { char ch = delim[0]; |