[Python-checkins] r72056 - python/trunk/Python/pystrtod.c

eric.smith python-checkins at python.org
Tue Apr 28 09:33:09 CEST 2009


Author: eric.smith
Date: Tue Apr 28 09:33:09 2009
New Revision: 72056

Log:
Silence warning on Windows.

Modified:
   python/trunk/Python/pystrtod.c

Modified: python/trunk/Python/pystrtod.c
==============================================================================
--- python/trunk/Python/pystrtod.c	(original)
+++ python/trunk/Python/pystrtod.c	Tue Apr 28 09:33:09 2009
@@ -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. */


More information about the Python-checkins mailing list