summaryrefslogtreecommitdiff
path: root/pjlib/src/pj/addr_resolv_symbian.cpp
diff options
context:
space:
mode:
authorBenny Prijono <bennylp@teluu.com>2007-12-02 15:36:46 +0000
committerBenny Prijono <bennylp@teluu.com>2007-12-02 15:36:46 +0000
commitb49338ee972a66fb6e5ece4b97440d0c3cfa642b (patch)
tree0a3df788f90101bd04b667021eac514355f22b1f /pjlib/src/pj/addr_resolv_symbian.cpp
parentea951533e9d970b9fd9d98b34081f568679d9bfc (diff)
More ticket #415: Added pj_sockaddr_get_len() and pj_inet_ntop2(), and fixed Symbian combilation warnings with gcce
git-svn-id: http://svn.pjsip.org/repos/pjproject/trunk@1608 74dad513-b988-da41-8d7b-12977e46ad98
Diffstat (limited to 'pjlib/src/pj/addr_resolv_symbian.cpp')
-rw-r--r--pjlib/src/pj/addr_resolv_symbian.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/pjlib/src/pj/addr_resolv_symbian.cpp b/pjlib/src/pj/addr_resolv_symbian.cpp
index d2bc6366..d3698b51 100644
--- a/pjlib/src/pj/addr_resolv_symbian.cpp
+++ b/pjlib/src/pj/addr_resolv_symbian.cpp
@@ -91,7 +91,7 @@ static pj_status_t getaddrinfo_by_af(int af, const pj_str_t *name,
int addrlen;
// Ignore if this is not the same address family
- if (inetAddr.Family() != af) {
+ if (inetAddr.Family() != (unsigned)af) {
resv.Next(nameEntry, reqStatus);
User::WaitForRequest(reqStatus);
continue;