summaryrefslogtreecommitdiff
path: root/src/mbyte.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2005-03-22 23:03:44 +0000
committerBram Moolenaar <Bram@vim.org>2005-03-22 23:03:44 +0000
commit6bb683663ad7ae9c303284c335a731a13233c6c2 (patch)
treeae1a51eb5403b7182a3bdd4d16c86b4bc1705a7a /src/mbyte.c
parentfc73515f7ba66b47705265bb8d01c6bec5df09c4 (diff)
downloadvim-git-6bb683663ad7ae9c303284c335a731a13233c6c2.tar.gz
updated for version 7.0063
Diffstat (limited to 'src/mbyte.c')
-rw-r--r--src/mbyte.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mbyte.c b/src/mbyte.c
index 695b651bb..7f8400d5c 100644
--- a/src/mbyte.c
+++ b/src/mbyte.c
@@ -3096,7 +3096,7 @@ iconv_string(vcp, str, slen, unconvlenp)
else
{
l = (*mb_ptr2len_check)((char_u *)from);
- if (l > fromlen)
+ if (l > (int)fromlen)
l = fromlen;
}
from += l;