Issue #9566: Fix compiler warning on Windows 64-bit

This commit is contained in:
Victor Stinner 2013-06-05 00:22:34 +02:00
parent 9f067f490f
commit 8bda465cae

View file

@ -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); char * p = fgets(buffer, MAXPATHLEN*2, env_file);
wchar_t tmpbuffer[MAXPATHLEN*2+1]; wchar_t tmpbuffer[MAXPATHLEN*2+1];
PyObject * decoded; PyObject * decoded;
int n; size_t n;
if (p == NULL) if (p == NULL)
break; break;