diff options
Diffstat (limited to 'lib/sh/strcasecmp.c')
-rw-r--r-- | lib/sh/strcasecmp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sh/strcasecmp.c b/lib/sh/strcasecmp.c index 74d98cb..1e15c02 100644 --- a/lib/sh/strcasecmp.c +++ b/lib/sh/strcasecmp.c @@ -79,7 +79,7 @@ strcasecmp (string1, string2) while ((r = to_lower (*s1) - to_lower (*s2)) == 0) { if (*s1++ == '\0') - return 0; + return 0; s2++; } |