Changeset 4537 for pjproject/trunk/pjsip/src/pjsua-lib/pjsua_media.c
- Timestamp:
- Jun 19, 2013 6:47:43 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjsip/src/pjsua-lib/pjsua_media.c
r4474 r4537 593 593 static void ice_failed_nego_cb(void *user_data) 594 594 { 595 int call_id = (int)( long)user_data;595 int call_id = (int)(pj_ssize_t)user_data; 596 596 pjsua_call *call = NULL; 597 597 pjsip_dialog *dlg = NULL; … … 642 642 /* Defer the callback to a timer */ 643 643 pjsua_schedule_timer2(&ice_failed_nego_cb, 644 (void*)( long)call->index, 1);644 (void*)(pj_ssize_t)call->index, 1); 645 645 } 646 646 }
Note: See TracChangeset
for help on using the changeset viewer.