Changeset 624 for pjproject/trunk/pjlib/src/pj/pool_caching.c
- Timestamp:
- Jul 23, 2006 2:38:49 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjlib/src/pj/pool_caching.c
r594 r624 176 176 177 177 /* Mark factory data */ 178 pool->factory_data = (void*) idx;178 pool->factory_data = (void*) (long) idx; 179 179 180 180 /* Increment used count. */ … … 226 226 * Otherwise put the pool in our recycle list. 227 227 */ 228 i = (unsigned) pool->factory_data;228 i = (unsigned) (unsigned long) pool->factory_data; 229 229 230 230 pj_assert(i<PJ_CACHING_POOL_ARRAY_SIZE);
Note: See TracChangeset
for help on using the changeset viewer.