commit | 09168a77e4d191081ee7eefd98c13a91f197e896 | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Thu Aug 02 21:24:42 2012 +0200 |
committer | Bram Moolenaar <Bram@vim.org> | Thu Aug 02 21:24:42 2012 +0200 |
tree | 7018d17a79e291d19dc546d448c0e5f687f22d7f | |
parent | da3cb831e938d672361995d1dec2de3dae72ee5b [diff] [blame] |
updated for version 7.3.621 Problem: Compiler warnings on 64 bit windows. Solution: Add type casts. (Mike Williams)
diff --git a/src/ex_docmd.c b/src/ex_docmd.c index 2d4117d..c7e6316 100644 --- a/src/ex_docmd.c +++ b/src/ex_docmd.c
@@ -3392,7 +3392,7 @@ /* Find start of last argument (argument just before cursor): */ p = buff; xp->xp_pattern = p; - len = STRLEN(buff); + len = (int)STRLEN(buff); while (*p && p < buff + len) { if (*p == ' ' || *p == TAB)