mirror of
https://github.com/python/cpython.git
synced 2025-10-17 04:08:28 +00:00
Get rid of compiler warnings (gcc 3.3.4 on x86)
This commit is contained in:
parent
15231548d2
commit
26efe402c2
5 changed files with 11 additions and 11 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue