diff options
| author | Thomas Heller <theller@ctypes.org> | 2006-03-16 19:34:56 (GMT) |
|---|---|---|
| committer | Thomas Heller <theller@ctypes.org> | 2006-03-16 19:34:56 (GMT) |
| commit | b2167614f8c20eacfd6304f85495a884f6435b7b (patch) | |
| tree | e37ba1b6450b08482768154b9124be1ac0f2865d | |
| parent | 4c9dfc86f3babfb8ae3d4931c8e5572fab21afc2 (diff) | |
| download | cpython-b2167614f8c20eacfd6304f85495a884f6435b7b.zip cpython-b2167614f8c20eacfd6304f85495a884f6435b7b.tar.gz cpython-b2167614f8c20eacfd6304f85495a884f6435b7b.tar.bz2 | |
Fix compiler warning.
| -rw-r--r-- | Modules/_ctypes/_ctypes.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/_ctypes/_ctypes.c b/Modules/_ctypes/_ctypes.c index c916c75..6ee815c 100644 --- a/Modules/_ctypes/_ctypes.c +++ b/Modules/_ctypes/_ctypes.c @@ -3017,7 +3017,7 @@ CFuncPtr_call(CFuncPtrObject *self, PyObject *inargs, PyObject *kwds) int inoutmask; int outmask; - int numretvals; + unsigned int numretvals; assert(dict); /* if not, it's a bug */ restype = self->restype ? self->restype : dict->restype; |
