_PyObject_DebugDumpAddress():  clarify an output message.
diff --git a/Objects/obmalloc.c b/Objects/obmalloc.c
index b29758c..dcef1c5 100644
--- a/Objects/obmalloc.c
+++ b/Objects/obmalloc.c
@@ -1102,7 +1102,7 @@
 		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). */