Fix other warnings under 64-bit Windows.
diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c
index 73fab71..821fed2 100644
--- a/Modules/posixmodule.c
+++ b/Modules/posixmodule.c
@@ -385,7 +385,7 @@
const int i1 = fd >> IOINFO_L2E;
const int i2 = fd & ((1 << IOINFO_L2E) - 1);
- static int sizeof_ioinfo = 0;
+ static size_t sizeof_ioinfo = 0;
/* Determine the actual size of the ioinfo structure,
* as used by the CRT loaded in memory
@@ -3655,8 +3655,8 @@
char **argvlist;
char **envlist;
PyObject *res = NULL;
- int mode, envc;
- Py_ssize_t argc, i;
+ int mode;
+ Py_ssize_t argc, i, envc;
Py_intptr_t spawnval;
PyObject *(*getitem)(PyObject *, Py_ssize_t);
Py_ssize_t lastarg = 0;
@@ -3841,7 +3841,8 @@
char **argvlist;
char **envlist;
PyObject *res=NULL;
- int mode, i, argc, envc;
+ int mode;
+ Py_ssize_t argc, i, envc;
Py_intptr_t spawnval;
PyObject *(*getitem)(PyObject *, Py_ssize_t);
int lastarg = 0;