Ignore:
Timestamp:
Apr 26, 2012 4:46:27 PM (12 years ago)
Author:
nanang
Message:

Misc (re #1446): Fixed compile errors on Symbian S60 5th Ed SDK: unrecognized a struct defined inside another struct and 64 bit integer constants suffix.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjsip/src/pjsua-lib/pjsua_core.c

    r4086 r4099  
    26302630                      pj_timer_entry *entry) 
    26312631{ 
    2632     struct timer_list *tmr = (struct timer_list *)entry->user_data; 
     2632    pjsua_timer_list *tmr = (pjsua_timer_list *)entry->user_data; 
    26332633    void (*cb)(void *user_data) = tmr->cb; 
    26342634    void *user_data = tmr->user_data; 
     
    26512651                                           unsigned msec_delay) 
    26522652{ 
    2653     struct timer_list *tmr = NULL; 
     2653    pjsua_timer_list *tmr = NULL; 
    26542654    pj_status_t status; 
    26552655    pj_time_val delay; 
     
    26582658 
    26592659    if (pj_list_empty(&pjsua_var.timer_list)) { 
    2660         tmr = PJ_POOL_ALLOC_T(pjsua_var.pool, struct timer_list); 
     2660        tmr = PJ_POOL_ALLOC_T(pjsua_var.pool, pjsua_timer_list); 
    26612661    } else { 
    26622662        tmr = pjsua_var.timer_list.next; 
Note: See TracChangeset for help on using the changeset viewer.