summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2013-05-28 22:31:46 +0200
committerBram Moolenaar <Bram@vim.org>2013-05-28 22:31:46 +0200
commit4ac6676ceec7087042e1b539ad62d9b2e90b4a9e (patch)
tree13066fcc5615ad7100e1c7da491d11960c09e1ca /src
parent51a2983904060e3d69ae31eca99169cd9d7548e9 (diff)
downloadvim-4ac6676ceec7087042e1b539ad62d9b2e90b4a9e.zip
updated for version 7.3.1035
Problem: Compiler warning on 64 bit windows. Solution: Add type cast. (Mike Williams)
Diffstat (limited to 'src')
-rw-r--r--src/if_py_both.h2
-rw-r--r--src/version.c2
2 files changed, 3 insertions, 1 deletions
diff --git a/src/if_py_both.h b/src/if_py_both.h
index 5ecc23961..c02cce351 100644
--- a/src/if_py_both.h
+++ b/src/if_py_both.h
@@ -3547,7 +3547,7 @@ run_do(const char *cmd, void *arg UNUSED
int status;
PyObject *pyfunc, *pymain;
- if (u_save(RangeStart - 1, RangeEnd + 1) != OK)
+ if (u_save((linenr_T)RangeStart - 1, (linenr_T)RangeEnd + 1) != OK)
{
EMSG(_("cannot save undo information"));
return;
diff --git a/src/version.c b/src/version.c
index 72ad14f98..f59afcf6d 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 */
/**/
+ 1035,
+/**/
1034,
/**/
1033,