]> granicus.if.org Git - python/commitdiff
SF Bug #1407069, Remove extra semi-colon if there is no long long
authorNeal Norwitz <nnorwitz@gmail.com>
Tue, 17 Jan 2006 05:27:39 +0000 (05:27 +0000)
committerNeal Norwitz <nnorwitz@gmail.com>
Tue, 17 Jan 2006 05:27:39 +0000 (05:27 +0000)
Modules/bz2module.c

index db9367546c552a1a17cdffd3a019657a1ab7269d..82b3958b8f9ffaa9895331233a6ff6598e166dbf 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 */