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;
 		}