0
0
mirror of https://github.com/vim/vim.git synced 2025-09-25 03:54:15 -04:00

updated for version 7.3.1176

Problem:    Compiler warnings on 64 bit system.
Solution:   Add type casts. (Mike Williams)
This commit is contained in:
Bram Moolenaar
2013-06-12 18:13:38 +02:00
parent 2d473ab932
commit edb07a2d88
3 changed files with 6 additions and 3 deletions

View File

@@ -992,7 +992,7 @@ find_module(char *fullname, char *tail, PyObject *new_path)
if ((dot = (char *) vim_strchr((char_u *) tail, '.')))
{
/*
* There is a dot in the name: call find_module recursively without the
* There is a dot in the name: call find_module recursively without the
* first component
*/
PyObject *newest_path;
@@ -1035,7 +1035,7 @@ find_module(char *fullname, char *tail, PyObject *new_path)
if (!(module = call_load_module(
fullname,
STRLEN(fullname),
(int)STRLEN(fullname),
find_module_result)))
{
Py_DECREF(find_module_result);