Skip to content
Snippets Groups Projects
Commit 3cd3e7ab authored by Bram Moolenaar's avatar Bram Moolenaar
Browse files

updated for version 7.3.580

Problem:    Warning on 64 bit MS-Windows.
Solution:   Add type cast. (Mike Williams)
parent 2afa3238
No related merge requests found
......@@ -495,7 +495,7 @@ VimStrwidth(PyObject *self UNUSED, PyObject *args)
if (!PyArg_ParseTuple(args, "s", &expr))
return NULL;
return PyLong_FromLong(mb_string2cells((char_u *)expr, STRLEN(expr)));
return PyLong_FromLong(mb_string2cells((char_u *)expr, (int)STRLEN(expr)));
}
/*
......
......@@ -714,6 +714,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
580,
/**/
579,
/**/
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment