[Python-3000-checkins] r65976 - in python/branches/py3k: Objects/obmalloc.c

christian.heimes python-3000-checkins at python.org
Fri Aug 22 21:38:46 CEST 2008


Author: christian.heimes
Date: Fri Aug 22 21:38:45 2008
New Revision: 65976

Log:
Merged revisions 65975 via svnmerge from 
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r65975 | christian.heimes | 2008-08-22 21:34:15 +0200 (Fri, 22 Aug 2008) | 1 line
  
  Changed type of numarenas from uint to size_t to silence a GCC warning on 64bit OSes. Reviewed by Benjamin Peterson.
........


Modified:
   python/branches/py3k/   (props changed)
   python/branches/py3k/Objects/obmalloc.c

Modified: python/branches/py3k/Objects/obmalloc.c
==============================================================================
--- python/branches/py3k/Objects/obmalloc.c	(original)
+++ python/branches/py3k/Objects/obmalloc.c	Fri Aug 22 21:38:45 2008
@@ -517,7 +517,7 @@
 #endif
 	if (unused_arena_objects == NULL) {
 		uint i;
-		uint numarenas;
+		size_t numarenas;
 		size_t nbytes;
 
 		/* Double the number of arena objects on each allocation.


More information about the Python-3000-checkins mailing list