Bug #1595: Remove extra semicolon.

This commit is contained in:
Martin v. Löwis 2008-02-12 19:30:35 +00:00
parent 08c0e63117
commit 4513ef8b7a

View file

@ -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);