diff options
Diffstat (limited to 'Objects/dictobject.c')
-rw-r--r-- | Objects/dictobject.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/dictobject.c b/Objects/dictobject.c index bacb705..abc9c8c 100644 --- a/Objects/dictobject.c +++ b/Objects/dictobject.c @@ -1149,7 +1149,7 @@ PyDict_MergeFromSeq2(PyObject *d, PyObject *seq2, int override) PyErr_Format(PyExc_ValueError, "dictionary update sequence element #%d " "has length %ld; 2 is required", - i, n); + i, (long)n); goto Fail; } |