From: Victor Stinner Date: Tue, 4 Jun 2013 22:22:34 +0000 (+0200) Subject: Issue #9566: Fix compiler warning on Windows 64-bit X-Git-Tag: v3.4.0a1~572 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=8bda465caea1198d31bcce09f3d36007ff1f9fd2;p=thirdparty%2FPython%2Fcpython.git Issue #9566: Fix compiler warning on Windows 64-bit --- diff --git a/PC/getpathp.c b/PC/getpathp.c index daf61c990e67..308eb87ed64a 100644 --- a/PC/getpathp.c +++ b/PC/getpathp.c @@ -434,7 +434,7 @@ find_env_config_value(FILE * env_file, const wchar_t * key, wchar_t * value) char * p = fgets(buffer, MAXPATHLEN*2, env_file); wchar_t tmpbuffer[MAXPATHLEN*2+1]; PyObject * decoded; - int n; + size_t n; if (p == NULL) break;