Changeset 1269 for pjproject/trunk/pjlib/src/pj/sock_symbian.cpp
- Timestamp:
- May 12, 2007 3:03:23 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjlib/src/pj/sock_symbian.cpp
r1248 r1269 272 272 temp_addr.Output(str16); 273 273 274 return pj_unicode_to_ansi( str16.PtrZ(), str16.Length(),274 return pj_unicode_to_ansi((const wchar_t*)str16.PtrZ(), str16.Length(), 275 275 str8, sizeof(str8)); 276 276 } … … 308 308 tempaddr16, sizeof(tempaddr16)); 309 309 310 TBuf<MAXIPLEN> ip_addr( tempaddr16);310 TBuf<MAXIPLEN> ip_addr((const TText*)tempaddr16); 311 311 312 312 TInetAddr addr; … … 419 419 User::WaitForRequest(reqStatus); 420 420 421 hostname.ptr = pj_unicode_to_ansi( tmpName.Ptr(), tmpName.Length(),421 hostname.ptr = pj_unicode_to_ansi((const wchar_t*)tmpName.Ptr(), tmpName.Length(), 422 422 buf, sizeof(buf)); 423 423 hostname.slen = tmpName.Length(); … … 552 552 553 553 PJ_ASSERT_RETURN(sock && addr && namelen && 554 *namelen>= sizeof(pj_sockaddr_in), PJ_EINVAL);554 *namelen>=(int)sizeof(pj_sockaddr_in), PJ_EINVAL); 555 555 556 556 CPjSocket *pjSock = (CPjSocket*)sock; … … 579 579 580 580 PJ_ASSERT_RETURN(sock && addr && namelen && 581 *namelen>= sizeof(pj_sockaddr_in), PJ_EINVAL);581 *namelen>=(int)sizeof(pj_sockaddr_in), PJ_EINVAL); 582 582 583 583 CPjSocket *pjSock = (CPjSocket*)sock; … … 729 729 PJ_ASSERT_RETURN(sock && buf && len && from && fromlen, PJ_EINVAL); 730 730 PJ_ASSERT_RETURN(*len > 0, PJ_EINVAL); 731 PJ_ASSERT_RETURN(*fromlen >= sizeof(pj_sockaddr_in), PJ_EINVAL);731 PJ_ASSERT_RETURN(*fromlen >= (int)sizeof(pj_sockaddr_in), PJ_EINVAL); 732 732 733 733 CPjSocket *pjSock = (CPjSocket*)sock;
Note: See TracChangeset
for help on using the changeset viewer.