[Python-checkins] python/dist/src/Modules getpath.c,1.50,1.51

bcannon@users.sourceforge.net bcannon at users.sourceforge.net
Fri Sep 16 04:43:39 CEST 2005


Update of /cvsroot/python/python/dist/src/Modules
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21321/Modules

Modified Files:
	getpath.c 
Log Message:
Change type on variable to silence gcc 4 warning.  Call signature was found at
http://darwinsource.opendarwin.org/10.4.2/dyld-43.1/src/dyldAPIs.cpp .


Index: getpath.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/getpath.c,v
retrieving revision 1.50
retrieving revision 1.51
diff -u -d -r1.50 -r1.51
--- getpath.c	8 Aug 2004 01:00:47 -0000	1.50
+++ getpath.c	16 Sep 2005 02:43:35 -0000	1.51
@@ -381,7 +381,7 @@
     NSModule pythonModule;
 #endif
 #ifdef __APPLE__
-    unsigned long nsexeclength = MAXPATHLEN;
+    uint32_t nsexeclength = MAXPATHLEN;
 #endif
 
 	/* If there is no slash in the argv0 path, then we have to



More information about the Python-checkins mailing list