Changeset 4761 for pjproject/trunk/pjsip/src/pjsua2/siptypes.cpp
- Timestamp:
- Feb 24, 2014 9:02:44 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjsip/src/pjsua2/siptypes.cpp
r4704 r4761 164 164 ts.password = str2Pj(this->password); 165 165 ts.method = this->method; 166 ts.ciphers_num = this->ciphers.size();166 ts.ciphers_num = (unsigned)this->ciphers.size(); 167 167 // The following will only work if sizeof(enum)==sizeof(int) 168 168 pj_assert(sizeof(ts.ciphers[0]) == sizeof(int)); … … 425 425 pjMsgBody.clone_data = &pjsip_clone_text_data; 426 426 pjMsgBody.data = (void*)body.c_str(); 427 pjMsgBody.len = body.size();427 pjMsgBody.len = (unsigned)body.size(); 428 428 pjMpp.body = &pjMsgBody; 429 429
Note: See TracChangeset
for help on using the changeset viewer.