]> git.ipfire.org Git - thirdparty/vim.git/commitdiff
updated for version 7.3.1081 v7.3.1081
authorBram Moolenaar <Bram@vim.org>
Fri, 31 May 2013 18:49:31 +0000 (20:49 +0200)
committerBram Moolenaar <Bram@vim.org>
Fri, 31 May 2013 18:49:31 +0000 (20:49 +0200)
Problem:    Compiler warnings on 64-bit Windows.
Solution:   Change variable types. (Mike Williams)

src/if_py_both.h
src/regexp_nfa.c
src/version.c

index c829e5150e02838fbe25eda9b2c32ab703a14299..4c80d2e30fa152d28e3966e9ba19398a73fb1d24 100644 (file)
@@ -1100,7 +1100,7 @@ typedef struct
     long_u     ht_used;
     hashtab_T  *ht;
     hashitem_T *hi;
-    int                todo;
+    long_u     todo;
 } dictiterinfo_T;
 
     static PyObject *
index b6fba2715ba7b93be07a2110032e107463a2b0da..1dc56a3cee7c0b9670d5cc7aae2693c489f5d597 100644 (file)
@@ -283,7 +283,7 @@ nfa_regcomp_start(expr, re_flags)
     static int
 realloc_post_list()
 {
-    int   nstate_max = post_end - post_start;
+    int   nstate_max = (int)(post_end - post_start);
     int   new_max = nstate_max + 1000;
     int   *new_start;
     int          *old_start;
index c52b0f3c9115410d0bcb63ee180be5031eef2028..5a31c9fee29db07d93e9a34c62da0fba8c8fe44a 100644 (file)
@@ -728,6 +728,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    1081,
 /**/
     1080,
 /**/