# HG changeset patch # User Bram Moolenaar # Date 1369773106 -7200 # Node ID 626e9ccb7c48b3fa7ff6d2ca5efe91bff39135dc # Parent 5023c29758df1861e4004829f12b017a71f19b3b updated for version 7.3.1035 Problem: Compiler warning on 64 bit windows. Solution: Add type cast. (Mike Williams) diff --git a/src/if_py_both.h b/src/if_py_both.h --- 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 --- 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,