summaryrefslogtreecommitdiff
path: root/strings/apr_strtok.c
diff options
context:
space:
mode:
Diffstat (limited to 'strings/apr_strtok.c')
-rw-r--r--strings/apr_strtok.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/strings/apr_strtok.c b/strings/apr_strtok.c
index 517b319d4..6be8f0034 100644
--- a/strings/apr_strtok.c
+++ b/strings/apr_strtok.c
@@ -41,7 +41,7 @@ APR_DECLARE(char *) apr_strtok(char *str, const char *sep, char **last)
token = str;
/* skip valid token characters to terminate token and
- * prepare for the next call (will terminate at '\0)
+ * prepare for the next call (will terminate at '\0)
*/
*last = token + 1;
while (**last && !strchr(sep, **last))