From 83087499a320b044b6784f3a0710f4f5cb1057bb Mon Sep 17 00:00:00 2001 From: Neal Norwitz Date: Tue, 17 Jan 2006 05:28:07 +0000 Subject: [PATCH] SF Bug #1407069, Remove extra semi-colon if there is no long long --- Modules/bz2module.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 */ -- 2.47.3