Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 8bda465

Browse files
committed
Issue #9566: Fix compiler warning on Windows 64-bit
1 parent 9f067f4 commit 8bda465

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

PC/getpathp.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -434,7 +434,7 @@ find_env_config_value(FILE * env_file, const wchar_t * key, wchar_t * value)
434434
char * p = fgets(buffer, MAXPATHLEN*2, env_file);
435435
wchar_t tmpbuffer[MAXPATHLEN*2+1];
436436
PyObject * decoded;
437-
int n;
437+
size_t n;
438438

439439
if (p == NULL)
440440
break;

0 commit comments

Comments
 (0)