Changeset 4099 for pjproject/trunk/pjsip/src/pjsua-lib/pjsua_core.c
- Timestamp:
- Apr 26, 2012 4:46:27 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjsip/src/pjsua-lib/pjsua_core.c
r4086 r4099 2630 2630 pj_timer_entry *entry) 2631 2631 { 2632 struct timer_list *tmr = (structtimer_list *)entry->user_data;2632 pjsua_timer_list *tmr = (pjsua_timer_list *)entry->user_data; 2633 2633 void (*cb)(void *user_data) = tmr->cb; 2634 2634 void *user_data = tmr->user_data; … … 2651 2651 unsigned msec_delay) 2652 2652 { 2653 structtimer_list *tmr = NULL;2653 pjsua_timer_list *tmr = NULL; 2654 2654 pj_status_t status; 2655 2655 pj_time_val delay; … … 2658 2658 2659 2659 if (pj_list_empty(&pjsua_var.timer_list)) { 2660 tmr = PJ_POOL_ALLOC_T(pjsua_var.pool, structtimer_list);2660 tmr = PJ_POOL_ALLOC_T(pjsua_var.pool, pjsua_timer_list); 2661 2661 } else { 2662 2662 tmr = pjsua_var.timer_list.next;
Note: See TracChangeset
for help on using the changeset viewer.