Fix the advertised size of PyCFunctionObjects in sys._debugmallocstats().
diff --git a/Objects/methodobject.c b/Objects/methodobject.c
index 1d143f9..60df302 100644
--- a/Objects/methodobject.c
+++ b/Objects/methodobject.c
@@ -343,8 +343,8 @@
 _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(),