summaryrefslogtreecommitdiffstats
path: root/src/if_python.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2014-01-14 19:35:56 +0100
committerBram Moolenaar <Bram@vim.org>2014-01-14 19:35:56 +0100
commit5395e7afe93d38793dcd6520b277ec0d3b1882ac (patch)
treefadf9ada5e4b1e29d938d8bf765ffcebcf292643 /src/if_python.c
parent1028f4d75ee04261f1338620c22f388a05098bb0 (diff)
updated for version 7.4.153v7.4.153
Problem: Compiler warning for pointer type. Solution: Add type cast.
Diffstat (limited to 'src/if_python.c')
-rw-r--r--src/if_python.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/if_python.c b/src/if_python.c
index 92510b3676..02dc8ed386 100644
--- a/src/if_python.c
+++ b/src/if_python.c
@@ -343,7 +343,7 @@ static PyObject*(*dll_PySequence_Fast)(PyObject *, const char *);
static PyInt(*dll_PyTuple_Size)(PyObject *);
static PyObject*(*dll_PyTuple_GetItem)(PyObject *, PyInt);
static PyTypeObject* dll_PyTuple_Type;
-static int (*dll_PySlice_GetIndicesEx)(PyObject *r, PyInt length,
+static int (*dll_PySlice_GetIndicesEx)(PySliceObject *r, PyInt length,
PyInt *start, PyInt *stop, PyInt *step,
PyInt *slicelen);
static PyObject*(*dll_PyImport_ImportModule)(const char *);