From: Neal Norwitz Date: Tue, 17 Jan 2006 05:28:07 +0000 (+0000) Subject: SF Bug #1407069, Remove extra semi-colon if there is no long long X-Git-Tag: v2.4.3c1~133 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=83087499a320b044b6784f3a0710f4f5cb1057bb;p=thirdparty%2FPython%2Fcpython.git SF Bug #1407069, Remove extra semi-colon if there is no long long --- diff --git a/Modules/bz2module.c b/Modules/bz2module.c index fca8498e7a15..7eaea2894e2f 100644 --- a/Modules/bz2module.c +++ b/Modules/bz2module.c @@ -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 */