(int) cast for strlen() to keep picky compilers happy.
diff --git a/Python/ceval.c b/Python/ceval.c
index e23ea72..032b14d 100644
--- a/Python/ceval.c
+++ b/Python/ceval.c
@@ -2642,7 +2642,7 @@
 		return 0;
 	}
 	s = PyString_AsString(prog);
-	if (strlen(s) != PyString_Size(prog)) {
+	if ((int)strlen(s) != PyString_Size(prog)) {
 		PyErr_SetString(PyExc_ValueError,
 				"embedded '\\0' in exec string");
 		return -1;