summaryrefslogtreecommitdiffstats
path: root/Include
diff options
context:
space:
mode:
authorMartin v. Löwis <martin@v.loewis.de>2008-02-12 19:30:35 (GMT)
committerMartin v. Löwis <martin@v.loewis.de>2008-02-12 19:30:35 (GMT)
commit4513ef8b7a4a684deea0dda23a760f4596a1097c (patch)
tree04d38f6792ad9b9860d4fd0d645575d3da75688d /Include
parent08c0e6311740f830eea30698877ae9dc9685dfd9 (diff)
downloadcpython-4513ef8b7a4a684deea0dda23a760f4596a1097c.zip
cpython-4513ef8b7a4a684deea0dda23a760f4596a1097c.tar.gz
cpython-4513ef8b7a4a684deea0dda23a760f4596a1097c.tar.bz2
Bug #1595: Remove extra semicolon.
Diffstat (limited to 'Include')
-rw-r--r--Include/ceval.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/ceval.h b/Include/ceval.h
index c9c59eb..03eb8cb 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);