Revision: 768
http://sourceforge.net/p/py2exe/svn/768
Author: theller
Date: 2017-01-04 16:13:11 +0000 (Wed, 04 Jan 2017)
Log Message:
-----------
Fix compiler warning in 64-bit build.
Modified Paths:
--------------
trunk/py2exe-3/source/run_ctypes_dll.c
Modified: trunk/py2exe-3/source/run_ctypes_dll.c
===================================================================
--- trunk/py2exe-3/source/run_ctypes_dll.c 2017-01-04 15:35:37 UTC (rev 767)
+++ trunk/py2exe-3/source/run_ctypes_dll.c 2017-01-04 16:13:11 UTC (rev 768)
@@ -93,7 +93,7 @@
char dll_path[_MAX_PATH+_MAX_FNAME+1];
wchar_t ctypes_path[_MAX_PATH+_MAX_FNAME+1];
wchar_t * temp=NULL;
- int length=0;
+ size_t length=0;
// shouldn't do this twice
assert(g_ctypes == NULL);
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|