Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 6144bee

Browse files
committed
Merged revisions 65975 via svnmerge from
svn+ssh://[email protected]/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. ........
1 parent ffeef90 commit 6144bee

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Objects/obmalloc.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -517,7 +517,7 @@ new_arena(void)
517517
#endif
518518
if (unused_arena_objects == NULL) {
519519
uint i;
520-
uint numarenas;
520+
size_t numarenas;
521521
size_t nbytes;
522522

523523
/* Double the number of arena objects on each allocation.

0 commit comments

Comments
 (0)