From: Stefan Neis Date: Sun, 20 Jan 2002 22:00:45 +0000 (+0000) Subject: Fixed apparent typo. X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/d75262dbfe329491843c866c2da1fc5e1d031bae Fixed apparent typo. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@13713 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/os2/gsocket.c b/src/os2/gsocket.c index 13797e51cb..242e3f4038 100644 --- a/src/os2/gsocket.c +++ b/src/os2/gsocket.c @@ -1491,7 +1491,7 @@ GSocketError GAddress_INET_SetHostName(GAddress *address, const char *hostname) { #elif defined(HAVE_INET_ADDR) addr->s_addr = inet_addr(hostname); - if ( (addr->s_addr == -1 ) + if ( addr->s_addr == -1 ) { #else /* Use gethostbyname by default */