Ignore:
Timestamp:
Jul 23, 2006 2:38:49 PM (18 years ago)
Author:
bennylp
Message:

Added 64bit Linux target (x86_64), also fixed compilation warnings when compiling for this target

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjlib/src/pj/pool_caching.c

    r594 r624  
    176176 
    177177    /* Mark factory data */ 
    178     pool->factory_data = (void*) idx; 
     178    pool->factory_data = (void*) (long) idx; 
    179179 
    180180    /* Increment used count. */ 
     
    226226     * Otherwise put the pool in our recycle list. 
    227227     */ 
    228     i = (unsigned)pool->factory_data; 
     228    i = (unsigned) (unsigned long) pool->factory_data; 
    229229 
    230230    pj_assert(i<PJ_CACHING_POOL_ARRAY_SIZE); 
Note: See TracChangeset for help on using the changeset viewer.