diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2006-01-17 05:27:39 (GMT) |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2006-01-17 05:27:39 (GMT) |
commit | 20bad74d6394a0e9ee82d776b8e4b93de352214a (patch) | |
tree | 4e60ebf06a7490622cff9c1f4c0ebe1f57acb865 /Modules | |
parent | 48653af70f4c09acf3f062a736b00a31678a6896 (diff) | |
download | cpython-20bad74d6394a0e9ee82d776b8e4b93de352214a.zip cpython-20bad74d6394a0e9ee82d776b8e4b93de352214a.tar.gz cpython-20bad74d6394a0e9ee82d776b8e4b93de352214a.tar.bz2 |
SF Bug #1407069, Remove extra semi-colon if there is no long long
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/bz2module.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 @@ 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 */ |