Silence warning on Windows.
diff --git a/Python/pystrtod.c b/Python/pystrtod.c
index e677305..b24bc97 100644
--- a/Python/pystrtod.c
+++ b/Python/pystrtod.c
@@ -260,7 +260,7 @@
 Py_LOCAL_INLINE(void)
 ensure_sign(char* buffer, size_t buf_size)
 {
-	Py_ssize_t len;
+	size_t len;
 
 	if (buffer[0] == '-')
 		/* Already have a sign. */