[Python-checkins] r43085 - python/trunk/Modules/_ctypes/_ctypes.c

thomas.heller python-checkins at python.org
Thu Mar 16 20:34:58 CET 2006


Author: thomas.heller
Date: Thu Mar 16 20:34:56 2006
New Revision: 43085

Modified:
   python/trunk/Modules/_ctypes/_ctypes.c
Log:
Fix compiler warning.


Modified: python/trunk/Modules/_ctypes/_ctypes.c
==============================================================================
--- python/trunk/Modules/_ctypes/_ctypes.c	(original)
+++ python/trunk/Modules/_ctypes/_ctypes.c	Thu Mar 16 20:34:56 2006
@@ -3017,7 +3017,7 @@
 
 	int inoutmask;
 	int outmask;
-	int numretvals;
+	unsigned int numretvals;
 
 	assert(dict); /* if not, it's a bug */
 	restype = self->restype ? self->restype : dict->restype;


More information about the Python-checkins mailing list