From: Jeremy Hylton Date: Mon, 22 Oct 2001 16:30:36 +0000 (+0000) Subject: cleanup indentation X-Git-Tag: v2.2.1c1~1111 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=39a362d9f4ed436151d32faf9d5c963c33c5d855;p=python cleanup indentation --- diff --git a/Objects/object.c b/Objects/object.c index aa5f87cebe..5c2dcf5b16 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) {