diff options
-rw-r--r-- | Objects/object.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/object.c b/Objects/object.c index aa5f87c..5c2dcf5 100644 --- a/Objects/object.c +++ b/Objects/object.c @@ -732,7 +732,7 @@ PyObject_Compare(PyObject *v, PyObject *w) #if defined(USE_STACKCHECK) if (PyOS_CheckStack()) { PyErr_SetString(PyExc_MemoryError, "Stack overflow"); - return -1; + return -1; } #endif if (v == NULL || w == NULL) { |