Changeset 5141 for pjproject


Ignore:
Timestamp:
Jul 31, 2015 7:18:33 AM (9 years ago)
Author:
nanang
Message:

Misc (re #1843): Fixed compile error in app samples on some compiler due to implicit conversion of 'void *' to 'pj_pool_t *'.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjsip-apps/src/samples/util.h

    r4537 r5141  
    160160 
    161161    /* Accumulate memory usage in active list. */ 
    162     p = cp->used_list.next; 
     162    p = (pj_pool_t*)cp->used_list.next; 
    163163    while (p != (pj_pool_t*) &cp->used_list) { 
    164164        total_alloc += pj_pool_get_capacity(p); 
Note: See TracChangeset for help on using the changeset viewer.