Fix naming inconsistency.
diff --git a/Objects/longobject.c b/Objects/longobject.c
index ed41010..c9c9817 100644
--- a/Objects/longobject.c
+++ b/Objects/longobject.c
@@ -4218,7 +4218,7 @@
round-half-to-even. */
PyObject *
-_PyLong_Divmod_Near(PyObject *a, PyObject *b)
+_PyLong_DivmodNear(PyObject *a, PyObject *b)
{
PyLongObject *quo = NULL, *rem = NULL;
PyObject *one = NULL, *twice_rem, *result, *temp;
@@ -4363,7 +4363,7 @@
if (result == NULL)
return NULL;
- temp = _PyLong_Divmod_Near(self, result);
+ temp = _PyLong_DivmodNear(self, result);
Py_DECREF(result);
result = temp;
if (result == NULL)