Closes #17892: Fix the name of _PyObject_CallMethodObjIdArgs
diff --git a/Objects/abstract.c b/Objects/abstract.c
index bfd53c9..0934b95 100644
--- a/Objects/abstract.c
+++ b/Objects/abstract.c
@@ -2343,7 +2343,7 @@
 }
 
 PyObject *
-_PyObject_CallMethodObjIdArgs(PyObject *callable,
+_PyObject_CallMethodIdObjArgs(PyObject *callable,
         struct _Py_Identifier *name, ...)
 {
     PyObject *args, *tmp;