summaryrefslogtreecommitdiff
path: root/src/string
diff options
context:
space:
mode:
Diffstat (limited to 'src/string')
-rw-r--r--src/string/wcsncmp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/string/wcsncmp.c b/src/string/wcsncmp.c
index 1b159f41..4ab32a92 100644
--- a/src/string/wcsncmp.c
+++ b/src/string/wcsncmp.c
@@ -2,6 +2,6 @@
int wcsncmp(const wchar_t *l, const wchar_t *r, size_t n)
{
- for (; n && *l==*r && *l && *r; l++, r++);
+ for (; n && *l==*r && *l && *r; n--, l++, r++);
return n ? *l - *r : 0;
}