diff options
author | Bram Moolenaar <Bram@vim.org> | 2013-05-31 20:49:31 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2013-05-31 20:49:31 +0200 |
commit | 99dc19d1cc4d68694f168ccee468bbab908b9c58 (patch) | |
tree | d309169c9b74b3bb454d52349cebe3ec2a917c72 /src | |
parent | ca982c8d4527262569abbbcecc352204d3b0ab15 (diff) | |
download | vim-git-99dc19d1cc4d68694f168ccee468bbab908b9c58.tar.gz |
updated for version 7.3.1081v7.3.1081
Problem: Compiler warnings on 64-bit Windows.
Solution: Change variable types. (Mike Williams)
Diffstat (limited to 'src')
-rw-r--r-- | src/if_py_both.h | 2 | ||||
-rw-r--r-- | src/regexp_nfa.c | 2 | ||||
-rw-r--r-- | src/version.c | 2 |
3 files changed, 4 insertions, 2 deletions
diff --git a/src/if_py_both.h b/src/if_py_both.h index c829e5150..4c80d2e30 100644 --- a/src/if_py_both.h +++ b/src/if_py_both.h @@ -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 * diff --git a/src/regexp_nfa.c b/src/regexp_nfa.c index b6fba2715..1dc56a3ce 100644 --- a/src/regexp_nfa.c +++ b/src/regexp_nfa.c @@ -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; diff --git a/src/version.c b/src/version.c index c52b0f3c9..5a31c9fee 100644 --- a/src/version.c +++ b/src/version.c @@ -729,6 +729,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 1081, +/**/ 1080, /**/ 1079, |