Ignore:
Timestamp:
Feb 24, 2014 9:02:44 AM (11 years ago)
Author:
nanang
Message:

Re #1680: Fixed compile warnings on VS2005 for x64/win64 config.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjsip/src/pjsua2/siptypes.cpp

    r4704 r4761  
    164164    ts.password         = str2Pj(this->password); 
    165165    ts.method           = this->method; 
    166     ts.ciphers_num      = this->ciphers.size(); 
     166    ts.ciphers_num      = (unsigned)this->ciphers.size(); 
    167167    // The following will only work if sizeof(enum)==sizeof(int) 
    168168    pj_assert(sizeof(ts.ciphers[0]) == sizeof(int)); 
     
    425425    pjMsgBody.clone_data    = &pjsip_clone_text_data; 
    426426    pjMsgBody.data          = (void*)body.c_str(); 
    427     pjMsgBody.len           = body.size(); 
     427    pjMsgBody.len           = (unsigned)body.size(); 
    428428    pjMpp.body = &pjMsgBody; 
    429429 
Note: See TracChangeset for help on using the changeset viewer.