[Python-checkins] r42081 - python/branches/release24-maint/Modules/bz2module.c

neal.norwitz python-checkins at python.org
Tue Jan 17 06:28:08 CET 2006


Author: neal.norwitz
Date: Tue Jan 17 06:28:07 2006
New Revision: 42081

Modified:
   python/branches/release24-maint/Modules/bz2module.c
Log:
SF Bug #1407069, Remove extra semi-colon if there is no long long

Modified: python/branches/release24-maint/Modules/bz2module.c
==============================================================================
--- python/branches/release24-maint/Modules/bz2module.c	(original)
+++ python/branches/release24-maint/Modules/bz2module.c	Tue Jan 17 06:28:07 2006
@@ -54,7 +54,7 @@
 	(((PY_LONG_LONG)bzs->total_out_hi32 << 32) + bzs->total_out_lo32)
 #else
 #define BZS_TOTAL_OUT(bzs) \
-	bzs->total_out_lo32;
+	bzs->total_out_lo32
 #endif
 
 #else /* ! BZ_CONFIG_ERROR */


More information about the Python-checkins mailing list