Changeset 4537 for pjproject/trunk/pjsip/src/pjsua-lib/pjsua_aud.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_aud.c
r4524 r4537 555 555 pjsua_call_id call_id; 556 556 557 call_id = (pjsua_call_id)( long)user_data;557 call_id = (pjsua_call_id)(pj_ssize_t)user_data; 558 558 pjsua_var.ua_cfg.cb.on_dtmf_digit(call_id, digit); 559 559 } … … 639 639 pjmedia_stream_set_dtmf_callback(call_med->strm.a.stream, 640 640 &dtmf_callback, 641 (void*)( long)(call->index));641 (void*)(pj_ssize_t)(call->index)); 642 642 } 643 643 … … 1047 1047 path[filename->slen] = '\0'; 1048 1048 1049 pool = pjsua_pool_create(get_basename(path, filename->slen), 1000, 1000); 1049 pool = pjsua_pool_create(get_basename(path, (unsigned)filename->slen), 1000, 1050 1000); 1050 1051 if (!pool) { 1051 1052 status = PJ_ENOMEM; … … 1335 1336 path[filename->slen] = '\0'; 1336 1337 1337 pool = pjsua_pool_create(get_basename(path, filename->slen), 1000, 1000); 1338 pool = pjsua_pool_create(get_basename(path, (unsigned)filename->slen), 1000, 1339 1000); 1338 1340 if (!pool) { 1339 1341 status = PJ_ENOMEM;
Note: See TracChangeset
for help on using the changeset viewer.