summaryrefslogtreecommitdiff
path: root/Objects/methodobject.c
diff options
context:
space:
mode:
Diffstat (limited to 'Objects/methodobject.c')
-rw-r--r--Objects/methodobject.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Objects/methodobject.c b/Objects/methodobject.c
index 1d143f9131..60df302b0c 100644
--- a/Objects/methodobject.c
+++ b/Objects/methodobject.c
@@ -343,8 +343,8 @@ void
_PyCFunction_DebugMallocStats(FILE *out)
{
_PyDebugAllocatorStats(out,
- "free PyCFunction",
- numfree, sizeof(PyCFunction));
+ "free PyCFunctionObjects",
+ numfree, sizeof(PyCFunctionObject));
}
/* PyCFunction_New() is now just a macro that calls PyCFunction_NewEx(),