Commit b2167614 authored by Thomas Heller's avatar Thomas Heller

Fix compiler warning.

parent 4c9dfc86
...@@ -3017,7 +3017,7 @@ CFuncPtr_call(CFuncPtrObject *self, PyObject *inargs, PyObject *kwds) ...@@ -3017,7 +3017,7 @@ CFuncPtr_call(CFuncPtrObject *self, PyObject *inargs, PyObject *kwds)
int inoutmask; int inoutmask;
int outmask; int outmask;
int numretvals; unsigned int numretvals;
assert(dict); /* if not, it's a bug */ assert(dict); /* if not, it's a bug */
restype = self->restype ? self->restype : dict->restype; restype = self->restype ? self->restype : dict->restype;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment