[Python-checkins] r46257 - python/trunk/Modules/_ctypes/libffi/src/prep_cif.c

ronald.oussoren python-checkins at python.org
Thu May 25 23:30:54 CEST 2006


Author: ronald.oussoren
Date: Thu May 25 23:30:54 2006
New Revision: 46257

Modified:
   python/trunk/Modules/_ctypes/libffi/src/prep_cif.c
Log:
Fix minor typo in prep_cif.c


Modified: python/trunk/Modules/_ctypes/libffi/src/prep_cif.c
==============================================================================
--- python/trunk/Modules/_ctypes/libffi/src/prep_cif.c	(original)
+++ python/trunk/Modules/_ctypes/libffi/src/prep_cif.c	Thu May 25 23:30:54 2006
@@ -114,8 +114,8 @@
 	/* This is not what the ABI says, but is what is really implemented */
 	switch (size) {
 	case 1: case 2: case 4: case 8: return 0;
-	return 1;
 	}
+	return 1;
 }
 #endif
 


More information about the Python-checkins mailing list