From: Martin v. Löwis Date: Tue, 12 Feb 2008 19:30:35 +0000 (+0000) Subject: Bug #1595: Remove extra semicolon. X-Git-Tag: v3.0a3~66 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4513ef8b7a4a684deea0dda23a760f4596a1097c;p=python Bug #1595: Remove extra semicolon. --- diff --git a/Include/ceval.h b/Include/ceval.h index c9c59eb17c..03eb8cb954 100644 --- a/Include/ceval.h +++ b/Include/ceval.h @@ -51,7 +51,7 @@ PyAPI_FUNC(int) Py_GetRecursionLimit(void); _Py_CheckRecursiveCall(where)) #define Py_LeaveRecursiveCall() \ do{ if((--PyThreadState_GET()->recursion_depth) < \ - _Py_CheckRecursionLimit - 50); \ + _Py_CheckRecursionLimit - 50) \ PyThreadState_GET()->overflowed = 0; \ } while(0) PyAPI_FUNC(int) _Py_CheckRecursiveCall(char *where);