]> git.ipfire.org Git - thirdparty/vim.git/commitdiff
updated for version 7.3.548 v7.3.548
authorBram Moolenaar <Bram@vim.org>
Thu, 7 Jun 2012 19:09:39 +0000 (21:09 +0200)
committerBram Moolenaar <Bram@vim.org>
Thu, 7 Jun 2012 19:09:39 +0000 (21:09 +0200)
Problem:    Compiler warning on 64 bit Windows.
Solution:   Add type cast. (Mike Williams)

src/ops.c
src/version.c

index ca327b955dc256bacfbd84c1e3b4ee15a3f09741..37c6aab48f0263110c77f267225ca82e0bfe24ba 100644 (file)
--- a/src/ops.c
+++ b/src/ops.c
@@ -4352,7 +4352,7 @@ do_join(count, insert_space, save_undo, use_formatoptions)
 
                char_u *new_curr = skip_comment(curr, TRUE, insert_space,
                                                           &prev_was_comment);
-               comments[t] = new_curr - curr;
+               comments[t] = (int)(new_curr - curr);
                curr = new_curr;
            }
            else
index d07a09cd993dd93e8607a5074a922da261c69abe..e9f160792bff7d9cd03b6ab6ec5aa3b5775ffda5 100644 (file)
@@ -714,6 +714,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    548,
 /**/
     547,
 /**/