]> git.saurik.com Git - wxWidgets.git/commitdiff
fix warning about comparing (signed) -1 with (unsigned) in_addr_t under Solaris
authorVadim Zeitlin <vadim@wxwidgets.org>
Sun, 6 Mar 2005 13:43:56 +0000 (13:43 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Sun, 6 Mar 2005 13:43:56 +0000 (13:43 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@32625 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/unix/gsocket.cpp

index eb7b1b5678fb98a63e67d5117b17e9e1427207fc..227bff176460c530c68825c159eff7516839d7de 100644 (file)
@@ -1656,7 +1656,7 @@ GSocketError GAddress_INET_SetHostName(GAddress *address, const char *hostname)
   if (inet_aton(hostname, addr) == 0)
   {
 #elif defined(HAVE_INET_ADDR)
-  if ( (addr->s_addr = inet_addr(hostname)) == -1 )
+  if ( (addr->s_addr = inet_addr(hostname)) == (in_addr_t)-1 )
   {
 #else
   /* Use gethostbyname by default */