summaryrefslogtreecommitdiff
path: root/pjsip/src
diff options
context:
space:
mode:
authorNanang Izzuddin <nanang@teluu.com>2012-04-26 16:46:27 +0000
committerNanang Izzuddin <nanang@teluu.com>2012-04-26 16:46:27 +0000
commit8578591bbf5084687f2f60289d2f1445e341dd7e (patch)
tree457056f132b1bc70ea385c45ed3194612fd6604a /pjsip/src
parent89b6fc1d3eefbb59919af2e28f914d7e11c5794e (diff)
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.
git-svn-id: http://svn.pjsip.org/repos/pjproject/trunk@4099 74dad513-b988-da41-8d7b-12977e46ad98
Diffstat (limited to 'pjsip/src')
-rw-r--r--pjsip/src/pjsua-lib/pjsua_core.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/pjsip/src/pjsua-lib/pjsua_core.c b/pjsip/src/pjsua-lib/pjsua_core.c
index 266dd09f..02809efb 100644
--- a/pjsip/src/pjsua-lib/pjsua_core.c
+++ b/pjsip/src/pjsua-lib/pjsua_core.c
@@ -2629,7 +2629,7 @@ PJ_DEF(pj_status_t) pjsua_schedule_timer( pj_timer_entry *entry,
static void timer_cb( pj_timer_heap_t *th,
pj_timer_entry *entry)
{
- struct timer_list *tmr = (struct timer_list *)entry->user_data;
+ pjsua_timer_list *tmr = (pjsua_timer_list *)entry->user_data;
void (*cb)(void *user_data) = tmr->cb;
void *user_data = tmr->user_data;
@@ -2650,14 +2650,14 @@ PJ_DEF(pj_status_t) pjsua_schedule_timer2( void (*cb)(void *user_data),
void *user_data,
unsigned msec_delay)
{
- struct timer_list *tmr = NULL;
+ pjsua_timer_list *tmr = NULL;
pj_status_t status;
pj_time_val delay;
pj_mutex_lock(pjsua_var.timer_mutex);
if (pj_list_empty(&pjsua_var.timer_list)) {
- tmr = PJ_POOL_ALLOC_T(pjsua_var.pool, struct timer_list);
+ tmr = PJ_POOL_ALLOC_T(pjsua_var.pool, pjsua_timer_list);
} else {
tmr = pjsua_var.timer_list.next;
pj_list_erase(tmr);