summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBram Moolenaar <bram@vim.org>2014-04-29 15:55:43 +0200
committerBram Moolenaar <bram@vim.org>2014-04-29 15:55:43 +0200
commitcffba557fe044e4fc8071f4c04b61ca979ebde5b (patch)
tree933d682952ec83797b885efa2ad639c591cf1240
parenteb73d1f96ba2ebfbdbc69d84e2f8cfdadeb80054 (diff)
downloadvim-7.4.271.tar.gz
updated for version 7.4.271v7.4.271v7-4-271
Problem: Compiler warning on 64 bit windows. Solution: Add type cast. (Mike Williams)
-rw-r--r--src/ops.c2
-rw-r--r--src/version.c2
2 files changed, 3 insertions, 1 deletions
diff --git a/src/ops.c b/src/ops.c
index c0337352..0348353f 100644
--- a/src/ops.c
+++ b/src/ops.c
@@ -6559,7 +6559,7 @@ str_to_reg(y_ptr, yank_type, str, len, blocklen, str_list)
{
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;
diff --git a/src/version.c b/src/version.c
index b41ffc29..92992579 100644
--- a/src/version.c
+++ b/src/version.c
@@ -735,6 +735,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 271,
+/**/
270,
/**/
269,