commit | 121f9bdde4a474ae729fd0b1e5fc9ad1ffcd8651 | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Tue Apr 29 15:55:43 2014 +0200 |
committer | Bram Moolenaar <Bram@vim.org> | Tue Apr 29 15:55:43 2014 +0200 |
tree | 57700192b699f8a5abc53beb5a14db6de9afe930 | |
parent | 1ff32c5c2cec3597a5695ca79825ab53441dbf06 [diff] [blame] |
updated for version 7.4.271 Problem: Compiler warning on 64 bit windows. Solution: Add type cast. (Mike Williams)
diff --git a/src/ops.c b/src/ops.c index c033735..0348353 100644 --- a/src/ops.c +++ b/src/ops.c
@@ -6559,7 +6559,7 @@ { for (ss = (char_u **) str; *ss != NULL; ++ss, ++lnum) { - i = STRLEN(*ss); + i = (long)STRLEN(*ss); pp[lnum] = vim_strnsave(*ss, i); if (i > maxlen) maxlen = i;