dict_print():  Explicitly narrow the return value
from a (possibly) wider variable.
diff --git a/Objects/dictobject.c b/Objects/dictobject.c
index 9cfb672..410b967 100644
--- a/Objects/dictobject.c
+++ b/Objects/dictobject.c
@@ -767,7 +767,7 @@
 	i = Py_ReprEnter((PyObject*)mp);
 	if (i != 0) {
 		if (i < 0)
-			return i;
+			return (int)i;
 		fprintf(fp, "{...}");
 		return 0;
 	}