diff options
author | Bram Moolenaar <Bram@vim.org> | 2013-11-03 00:28:25 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2013-11-03 00:28:25 +0100 |
commit | 0b400087d076ba1a476d753c019fbfd96d8ae58e (patch) | |
tree | 0cc81dc7cdb88fdb263cefb6b1bad70c2138d41c /src/if_python3.c | |
parent | 9db1293317abd1aca101bf2d35caef0354f66e8b (diff) | |
download | vim-git-0b400087d076ba1a476d753c019fbfd96d8ae58e.tar.gz |
updated for version 7.4.060v7.4.060
Problem: Declaration has wrong return type for PyObject_SetAttrString().
Solution: Use int instead of PyObject. (Andreas Schwab)
Diffstat (limited to 'src/if_python3.c')
-rw-r--r-- | src/if_python3.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/if_python3.c b/src/if_python3.c index 8a5b3329e..40bc97bc8 100644 --- a/src/if_python3.c +++ b/src/if_python3.c @@ -302,7 +302,7 @@ static int (*py3_PyRun_SimpleString)(char *); static PyObject* (*py3_PyRun_String)(char *, int, PyObject *, PyObject *); static PyObject* (*py3_PyObject_GetAttrString)(PyObject *, const char *); static int (*py3_PyObject_HasAttrString)(PyObject *, const char *); -static PyObject* (*py3_PyObject_SetAttrString)(PyObject *, const char *, PyObject *); +static int (*py3_PyObject_SetAttrString)(PyObject *, const char *, PyObject *); static PyObject* (*py3_PyObject_CallFunctionObjArgs)(PyObject *, ...); static PyObject* (*py3__PyObject_CallFunction_SizeT)(PyObject *, char *, ...); static PyObject* (*py3_PyObject_Call)(PyObject *, PyObject *, PyObject *); |