mirror of
https://github.com/python/cpython.git
synced 2025-08-03 08:34:29 +00:00
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. ........
This commit is contained in:
parent
ffeef9044e
commit
6144bee228
1 changed files with 1 additions and 1 deletions
|
@ -517,7 +517,7 @@ new_arena(void)
|
|||
#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.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue