summaryrefslogtreecommitdiff
path: root/lib/strcasecmp.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/strcasecmp.c')
-rw-r--r--lib/strcasecmp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/strcasecmp.c b/lib/strcasecmp.c
index 708132507..cc4778a46 100644
--- a/lib/strcasecmp.c
+++ b/lib/strcasecmp.c
@@ -46,7 +46,7 @@ strcasecmp (const char *s1, const char *s2)
c2 = TOLOWER (*p2);
if (c1 == '\0')
- break;
+ break;
++p1;
++p2;