mirror of
https://github.com/python/cpython.git
synced 2025-12-04 16:43:27 +00:00
Issue #9566: Fix compiler warning on Windows 64-bit
This commit is contained in:
parent
9f067f490f
commit
8bda465cae
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue