[Python-checkins] r75619 - sandbox/trunk/decimal/decimal_in_c/deccoeff.c

mark.dickinson python-checkins at python.org
Thu Oct 22 21:04:51 CEST 2009


Author: mark.dickinson
Date: Thu Oct 22 21:04:51 2009
New Revision: 75619

Log:
Fix extra semicolon

Modified:
   sandbox/trunk/decimal/decimal_in_c/deccoeff.c

Modified: sandbox/trunk/decimal/decimal_in_c/deccoeff.c
==============================================================================
--- sandbox/trunk/decimal/decimal_in_c/deccoeff.c	(original)
+++ sandbox/trunk/decimal/decimal_in_c/deccoeff.c	Thu Oct 22 21:04:51 2009
@@ -22,7 +22,7 @@
 #ifdef HAVE_C99_BOOL
 #  define bool _Bool
 #else
-#  define bool signed char;
+#  define bool signed char
 #endif
 #define false (bool)0
 #define true (bool)1


More information about the Python-checkins mailing list