Changeset 4298 for pjproject/trunk/pjlib/src/pj/pool.c
- Timestamp:
- Nov 22, 2012 5:00:01 AM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjlib/src/pj/pool.c
r3553 r4298 89 89 * (depending on whether the pool is allowed to resize). 90 90 */ 91 PJ_DEF(void*) pj_pool_allocate_find(pj_pool_t *pool, unsignedsize)91 PJ_DEF(void*) pj_pool_allocate_find(pj_pool_t *pool, pj_size_t size) 92 92 { 93 93 pj_pool_block *block = pool->block_list.next; … … 122 122 size + sizeof(pj_pool_block) + PJ_POOL_ALIGNMENT) 123 123 { 124 unsignedcount;124 pj_size_t count; 125 125 count = (size + pool->increment_size + sizeof(pj_pool_block) + 126 126 PJ_POOL_ALIGNMENT) /
Note: See TracChangeset
for help on using the changeset viewer.