Fix compiler warnings

This commit is contained in:
Victor Stinner 2011-11-22 02:30:47 +01:00
parent 9d3b93ba30
commit f8facacf30
3 changed files with 4 additions and 3 deletions

View file

@ -7756,9 +7756,9 @@ posix_putenv(PyObject *self, PyObject *args)
PyObject *os1, *os2;
char *s1, *s2;
char *newenv;
size_t len;
#endif
PyObject *newstr = NULL;
size_t len;
#ifdef MS_WINDOWS
if (!PyArg_ParseTuple(args,