mirror of
https://github.com/vim/vim.git
synced 2025-09-25 03:54:15 -04:00
updated for version 7.3.1035
Problem: Compiler warning on 64 bit windows. Solution: Add type cast. (Mike Williams)
This commit is contained in:
@@ -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;
|
||||
|
Reference in New Issue
Block a user