]> granicus.if.org Git - python/commitdiff
Bug #1595: Remove extra semicolon.
authorMartin v. Löwis <martin@v.loewis.de>
Tue, 12 Feb 2008 19:30:35 +0000 (19:30 +0000)
committerMartin v. Löwis <martin@v.loewis.de>
Tue, 12 Feb 2008 19:30:35 +0000 (19:30 +0000)
Include/ceval.h

index c9c59eb17c7972f888cc4228ed69f9a3f13a16aa..03eb8cb9545babc8c29eb3b7ce222181c2ba384b 100644 (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);