diff options
author | Bram Moolenaar <Bram@vim.org> | 2013-05-30 19:18:31 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2013-05-30 19:18:31 +0200 |
commit | 021e147b7030103d394e1081568e88d92d678531 (patch) | |
tree | 7744cae58a904bc453a946bb7edb4ae3dc82cafd | |
parent | f62d942e548f07cf35b24f8410a9b5cb06bbb60e (diff) | |
download | vim-021e147b7030103d394e1081568e88d92d678531.zip |
updated for version 7.3.1075
Problem: Compiler warning for storing a long_u in an int.
Solution: Declare the number as an int. (Mike Williams)
-rw-r--r-- | src/regexp_nfa.c | 2 | ||||
-rw-r--r-- | src/version.c | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/src/regexp_nfa.c b/src/regexp_nfa.c index ae6281d09..5e21db3c7 100644 --- a/src/regexp_nfa.c +++ b/src/regexp_nfa.c @@ -890,7 +890,7 @@ nfa_regatom() default: { - long_u n = 0; + int n = 0; int cmp = c; if (c == '<' || c == '>') diff --git a/src/version.c b/src/version.c index 8ee5b4e20..32ff95990 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 */ /**/ + 1075, +/**/ 1074, /**/ 1073, |