From: Tim Peters Date: Fri, 12 Apr 2002 07:43:07 +0000 (+0000) Subject: _PyObject_DebugDumpAddress(): clarify an output message. X-Git-Tag: v2.3c1~6015 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f539c68ccd33ce140e5a15be3dcdbe4132d43948;p=thirdparty%2FPython%2Fcpython.git _PyObject_DebugDumpAddress(): clarify an output message. --- diff --git a/Objects/obmalloc.c b/Objects/obmalloc.c index b29758c4f173..dcef1c559a84 100644 --- a/Objects/obmalloc.c +++ b/Objects/obmalloc.c @@ -1102,7 +1102,7 @@ _PyObject_DebugDumpAddress(const void *p) return; nbytes = read4(q-8); - fprintf(stderr, " %lu bytes originally allocated\n", nbytes); + fprintf(stderr, " %lu bytes originally requested\n", nbytes); /* In case this is nuts, check the pad bytes before trying to read up the serial number (the address deref could blow up). */