commit | 26efe402c2a5dba441dc2feae2f15fea6be452ba | [log] [tgz] |
---|---|---|
author | Neal Norwitz <nnorwitz@gmail.com> | Thu Feb 16 06:21:57 2006 +0000 |
committer | Neal Norwitz <nnorwitz@gmail.com> | Thu Feb 16 06:21:57 2006 +0000 |
tree | 7d083ee4baf14cd990a8dbcfefa9aa7ba9ca5285 | |
parent | 15231548d20b2a6fcac2830935ec076bed42448f [diff] [blame] |
Get rid of compiler warnings (gcc 3.3.4 on x86)
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 @@ PyErr_Format(PyExc_ValueError, "dictionary update sequence element #%d " "has length %ld; 2 is required", - i, n); + i, (long)n); goto Fail; }