]> git.saurik.com Git - wxWidgets.git/blobdiff - src/unix/gsocket.cpp
recall initial font
[wxWidgets.git] / src / unix / gsocket.cpp
index 3ea7d35fbd4b5d31b6ced37189bac5f4ea6dc065..a1ceb862e3dee93d68f70917626f9647ed923ddb 100644 (file)
@@ -923,7 +923,7 @@ GSocketEventFlags GSocket::Select(GSocketEventFlags flags)
 
     /* Do not use a static struct, Linux can garble it */
     tv.tv_sec = m_timeout / 1000;
-    tv.tv_usec = (m_timeout % 1000) / 1000;
+    tv.tv_usec = (m_timeout % 1000) * 1000;
 
     FD_ZERO(&readfds);
     FD_ZERO(&writefds);
@@ -1412,7 +1412,7 @@ void GSocket::Detected_Write()
 
     m_establishing = false;
 
-    getsockopt(m_fd, SOL_SOCKET, SO_ERROR, (void*)&error, (int*) &len);
+    getsockopt(m_fd, SOL_SOCKET, SO_ERROR, (void*)&error, &len);
 
     if (error)
     {