]> granicus.if.org Git - vim/commitdiff
patch 7.4.1907 v7.4.1907
authorBram Moolenaar <Bram@vim.org>
Tue, 7 Jun 2016 20:50:01 +0000 (22:50 +0200)
committerBram Moolenaar <Bram@vim.org>
Tue, 7 Jun 2016 20:50:01 +0000 (22:50 +0200)
Problem:    Warnings from 64 bit compiler.
Solution:   Change type to size_t. (Mike Williams)

src/ex_cmds.c
src/version.c

index 9f1db65b5a9829714440897d127789eb8ecf643e..62b39a2d898a95553caaa5ebcb581f198aa0aa08 100644 (file)
@@ -2574,9 +2574,9 @@ barline_parse(vir_T *virp, char_u *text, bval_T *values)
 
            if (vim_isdigit(p[1]))
            {
-               int len;
-               int todo;
-               int n;
+               size_t len;
+               size_t todo;
+               size_t n;
 
                /* String value was split into lines that are each shorter
                 * than LSIZE:
@@ -2586,7 +2586,7 @@ barline_parse(vir_T *virp, char_u *text, bval_T *values)
                 */
                ++p;
                len = getdigits(&p);
-               buf = alloc(len + 1);
+               buf = alloc((int)(len + 1));
                p = buf;
                for (todo = len; todo > 0; todo -= n)
                {
index 547f30add633eb2df9876aec91aedebfd24487ee..571b54e65592a7954b409253edf8af365b7cb7c2 100644 (file)
@@ -753,6 +753,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    1907,
 /**/
     1906,
 /**/