Ignore:
Timestamp:
Aug 1, 2017 7:49:34 AM (7 years ago)
Author:
nanang
Message:

Misc (re #1994): Fixed compile warnings on MSVC 2005 & 2015.

File:
1 edited

Legend:

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

    r5629 r5635  
    29402940    */ 
    29412941    pconst = pjsip_parser_const();       
    2942     call_id_len = pj_strncpy2_escape(call_id_dest_buf, &dest_dlg->call_id->id, 
    2943                                      PJ_ARRAY_SIZE(call_id_dest_buf), 
    2944                                      &pconst->pjsip_HDR_CHAR_SPEC); 
     2942    call_id_len = (int)pj_strncpy2_escape(call_id_dest_buf, &dest_dlg->call_id->id, 
     2943                                          PJ_ARRAY_SIZE(call_id_dest_buf), 
     2944                                          &pconst->pjsip_HDR_CHAR_SPEC); 
    29452945    if (call_id_len < 0) { 
    29462946        status = PJSIP_EURITOOLONG; 
Note: See TracChangeset for help on using the changeset viewer.