From: Mark Lodato Date: Sun, 4 Oct 2009 23:29:54 +0000 (-0400) Subject: freeze: remove mistaken semicolon X-Git-Tag: 0.12.alpha0~35 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=18eccdef6077beb9eca3eea42a2fffe316705fe2;p=cython.git freeze: remove mistaken semicolon --- diff --git a/bin/cython_freeze b/bin/cython_freeze index f3004629..93b1e589 100755 --- a/bin/cython_freeze +++ b/bin/cython_freeze @@ -66,7 +66,8 @@ int wmain(int argc, wchar_t **argv) { if (!m) { r = 1; PyErr_Print(); /* This exits with the right code if SystemExit. */ - if (Py_FlushLine()); PyErr_Clear(); + if (Py_FlushLine()) + PyErr_Clear(); } Py_XDECREF(m); Py_Finalize();