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/pjsua2/endpoint.cpp

    r5522 r5635  
    8585        verifyMsgs.push_back(verif_msgs[i]); 
    8686    } 
     87#else 
     88    PJ_UNUSED_ARG(info); 
    8789#endif 
    8890} 
     
    13941396     
    13951397    srtp_opt->use = prm.srtpUse; 
    1396     srtp_opt->crypto_count = prm.cryptos.size(); 
     1398    srtp_opt->crypto_count = (unsigned)prm.cryptos.size(); 
    13971399    for (unsigned i = 0; i < srtp_opt->crypto_count; i++) { 
    13981400        srtp_opt->crypto[i].key   = str2Pj(prm.cryptos[i].key); 
Note: See TracChangeset for help on using the changeset viewer.