Skip to content

Commit 4513ef8

Browse files
committed
Bug python#1595: Remove extra semicolon.
1 parent 08c0e63 commit 4513ef8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Include/ceval.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ PyAPI_FUNC(int) Py_GetRecursionLimit(void);
5151
_Py_CheckRecursiveCall(where))
5252
#define Py_LeaveRecursiveCall() \
5353
do{ if((--PyThreadState_GET()->recursion_depth) < \
54-
_Py_CheckRecursionLimit - 50); \
54+
_Py_CheckRecursionLimit - 50) \
5555
PyThreadState_GET()->overflowed = 0; \
5656
} while(0)
5757
PyAPI_FUNC(int) _Py_CheckRecursiveCall(char *where);

0 commit comments

Comments
 (0)