summaryrefslogtreecommitdiffstats
path: root/contrib/tools/python3/Objects/enumobject.c
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/tools/python3/Objects/enumobject.c')
-rw-r--r--contrib/tools/python3/Objects/enumobject.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/tools/python3/Objects/enumobject.c b/contrib/tools/python3/Objects/enumobject.c
index 556666779d8..bffe7172a39 100644
--- a/contrib/tools/python3/Objects/enumobject.c
+++ b/contrib/tools/python3/Objects/enumobject.c
@@ -145,7 +145,7 @@ enumerate_vectorcall(PyObject *type, PyObject *const *args,
}
PyErr_Format(PyExc_TypeError,
- "enumerate() takes at most 2 arguments (%d given)", nargs + nkwargs);
+ "enumerate() takes at most 2 arguments (%zd given)", nargs + nkwargs);
return NULL;
}