commit | 20bad74d6394a0e9ee82d776b8e4b93de352214a | [log] [tgz] |
---|---|---|
author | Neal Norwitz <nnorwitz@gmail.com> | Tue Jan 17 05:27:39 2006 +0000 |
committer | Neal Norwitz <nnorwitz@gmail.com> | Tue Jan 17 05:27:39 2006 +0000 |
tree | 4e60ebf06a7490622cff9c1f4c0ebe1f57acb865 | |
parent | 48653af70f4c09acf3f062a736b00a31678a6896 [diff] [blame] |
SF Bug #1407069, Remove extra semi-colon if there is no long long
diff --git a/Modules/bz2module.c b/Modules/bz2module.c index db93675..82b3958 100644 --- a/Modules/bz2module.c +++ b/Modules/bz2module.c
@@ -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 */