]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
SF Bug #1407069, Remove extra semi-colon if there is no long long
authorNeal Norwitz <nnorwitz@gmail.com>
Tue, 17 Jan 2006 05:28:07 +0000 (05:28 +0000)
committerNeal Norwitz <nnorwitz@gmail.com>
Tue, 17 Jan 2006 05:28:07 +0000 (05:28 +0000)
Modules/bz2module.c

index fca8498e7a15ff50b7b4a344078f254696b33937..7eaea2894e2f97749a678537b97f22d24e8ea429 100644 (file)
@@ -54,7 +54,7 @@ typedef fpos_t Py_off_t;
        (((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 */