Commit 4513ef8b authored by Martin v. Löwis's avatar Martin v. Löwis

Bug #1595: Remove extra semicolon.

parent 08c0e631
......@@ -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);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment