[pywin32-checkins] pywin32/win32/src win32process.i,1.30,1.31
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: Roger U. <ru...@us...> - 2007-08-19 04:28:19
|
Update of /cvsroot/pywin32/pywin32/win32/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22015/win32/src Modified Files: win32process.i Log Message: Fix 64-bit warnings Index: win32process.i =================================================================== RCS file: /cvsroot/pywin32/pywin32/win32/src/win32process.i,v retrieving revision 1.30 retrieving revision 1.31 diff -C2 -d -r1.30 -r1.31 *** win32process.i 23 Jul 2007 08:34:04 -0000 1.30 --- win32process.i 19 Aug 2007 04:28:20 -0000 1.31 *************** *** 478,484 **** } int i; ! unsigned bufLen = 0; PyObject *keys = NULL, *vals = NULL; ! int envLength = PyMapping_Length(env); LPVOID result = NULL; WCHAR *pUCur; --- 478,484 ---- } int i; ! size_t bufLen = 0; PyObject *keys = NULL, *vals = NULL; ! Py_ssize_t envLength = PyMapping_Length(env); LPVOID result = NULL; WCHAR *pUCur; |