Fixed yet another compiler warning of 64bit builds.
Reviewed by Georg Brandl.
diff --git a/Objects/bytesobject.c b/Objects/bytesobject.c
index 24228ea..d59e79a 100644
--- a/Objects/bytesobject.c
+++ b/Objects/bytesobject.c
@@ -3212,7 +3212,7 @@
 	int numnondigits = 0;
 
 	/* Avoid exceeding SSIZE_T_MAX */
-	if (prec > PY_SSIZE_T_MAX-3) {
+	if (prec > INT_MAX-3) {
 		PyErr_SetString(PyExc_OverflowError,
 				"precision too large");
 		return NULL;