summaryrefslogtreecommitdiff
path: root/src/mbyte.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2005-06-05 22:01:26 +0000
committerBram Moolenaar <Bram@vim.org>2005-06-05 22:01:26 +0000
commitbc045ea87a5cc6af090dd112b4eaa5964c726132 (patch)
treeeace08aedcc8ea823286eb6627f001f83b1ce337 /src/mbyte.c
parent50cde8273e0b9391ccd04179b2445361db61ff63 (diff)
downloadvim-git-bc045ea87a5cc6af090dd112b4eaa5964c726132.tar.gz
updated for version 7.0080
Diffstat (limited to 'src/mbyte.c')
-rw-r--r--src/mbyte.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/mbyte.c b/src/mbyte.c
index 71a03a5d1..996eb8dd5 100644
--- a/src/mbyte.c
+++ b/src/mbyte.c
@@ -2186,12 +2186,13 @@ utf_isupper(a)
* two characters otherwise.
*/
int
-mb_strnicmp(s1, s2, n)
+mb_strnicmp(s1, s2, nn)
char_u *s1, *s2;
- int n;
+ size_t nn;
{
int i, j, l;
int cdiff;
+ int n = nn;
for (i = 0; i < n; i += l)
{