fix _PyObject_CallArg1 compiler warnings (closes #28855)

This commit is contained in:
Benjamin Peterson 2016-12-01 22:01:32 -08:00
parent d6958ac6c0
commit 7cf9e13f25
1 changed files with 1 additions and 1 deletions

View File

@ -341,7 +341,7 @@ xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
_PyObject_FastCall((func), NULL, 0) _PyObject_FastCall((func), NULL, 0)
#define _PyObject_CallArg1(func, arg) \ #define _PyObject_CallArg1(func, arg) \
_PyObject_FastCall((func), &(arg), 1) _PyObject_FastCall((func), (PyObject **)&(arg), 1)
PyAPI_FUNC(PyObject *) _PyObject_Call_Prepend(PyObject *func, PyAPI_FUNC(PyObject *) _PyObject_Call_Prepend(PyObject *func,
PyObject *obj, PyObject *args, PyObject *obj, PyObject *args,