From: Neal Norwitz Date: Tue, 17 Jan 2006 05:27:39 +0000 (+0000) Subject: SF Bug #1407069, Remove extra semi-colon if there is no long long X-Git-Tag: v2.5a0~804 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=20bad74d6394a0e9ee82d776b8e4b93de352214a;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 db9367546c55..82b3958b8f9f 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 */