]> git.saurik.com Git - wxWidgets.git/blobdiff - src/unix/gsocket.c
mingw32 compilation fixes
[wxWidgets.git] / src / unix / gsocket.c
index dd25f30b46e0348c53fa731ba3172e28bf61c94f..d22b5bf23fe8ae42bff2c1dc4db62d65e6bc0d76 100644 (file)
@@ -1089,8 +1089,10 @@ GSocketError _GAddress_Init_INET(GAddress *address)
   address->m_family = GSOCK_INET;
   address->m_realfamily = PF_INET;
   ((struct sockaddr_in *)address->m_addr)->sin_family = AF_INET;
-  // INADDR_BROADCAST is identical to INADDR_NONE which is not defined
-  // on all unices. INADDR_BROADCAST should be fine to indicate an error. (KB)
+  /*
+     INADDR_BROADCAST is identical to INADDR_NONE which is not defined
+     on all unices. INADDR_BROADCAST should be fine to indicate an error.
+   */
   ((struct sockaddr_in *)address->m_addr)->sin_addr.s_addr = INADDR_BROADCAST;
 
   return GSOCK_NOERROR;