]> git.saurik.com Git - wxWidgets.git/commitdiff
Only added \n to debug printfs
authorGuillermo Rodriguez Garcia <guille@iies.es>
Thu, 16 Mar 2000 16:00:19 +0000 (16:00 +0000)
committerGuillermo Rodriguez Garcia <guille@iies.es>
Thu, 16 Mar 2000 16:00:19 +0000 (16:00 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@6758 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/unix/gsocket.c

index d2076f9a58b949b9fac5cf0cbd051c6f1b28862b..34d1e9c3d3738a05c5d9c05ab8204b91bcdccd8a 100644 (file)
@@ -1087,13 +1087,13 @@ GSocketError _GSocket_Output_Timeout(GSocket *socket)
       return GSOCK_TIMEDOUT;
     }
     if ( ! FD_ISSET(socket->m_fd, &writefds) )
-      GSocket_Debug(( "GSocket_Output_Timeout is buggy!" ));
+      GSocket_Debug(( "GSocket_Output_Timeout is buggy!\n" ));
     else
-      GSocket_Debug(( "GSocket_Output_Timeout seems correct" ));
+      GSocket_Debug(( "GSocket_Output_Timeout seems correct\n" ));
   }
   else
   {
-    GSocket_Debug(( "GSocket_Output_Timeout, didn't try select!" ));
+    GSocket_Debug(( "GSocket_Output_Timeout, didn't try select!\n" ));
   }
 
   return GSOCK_NOERROR;