Browse Source

minor warning

David Rose 17 years ago
parent
commit
89d4957646
1 changed files with 4 additions and 1 deletions
  1. 4 1
      panda/src/net/connection.cxx

+ 4 - 1
panda/src/net/connection.cxx

@@ -49,7 +49,10 @@ Connection(ConnectionManager *manager, Socket_IP *socket) :
 #if defined(HAVE_THREADS) && defined(SIMPLE_THREADS)
   // In the presence of SIMPLE_THREADS, we use non-blocking I/O.  We
   // simulate blocking by yielding the thread.
-  _socket->SetNonBlocking();
+  if (_socket->SetNonBlocking() != ALL_OK) {
+    net_cat.warning()
+      << "Unable to set non-blocking status on socket\n";
+  }
 #endif
 }