From 94cc00ce4d61808d8697be45d38e94a43133f061 Mon Sep 17 00:00:00 2001 From: Eric Smith Date: Tue, 28 Apr 2009 07:33:09 +0000 Subject: Silence warning on Windows. --- Python/pystrtod.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 @@ change_decimal_from_locale_to_dot(char* buffer) 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. */ -- cgit v0.12