Author: dreiss
Date: Fri Jul 11 14:39:58 2008
New Revision: 676087

URL: http://svn.apache.org/viewvc?rev=676087&view=rev
Log:
(THRIFT-37) Add some missing newlines to fprintfs.

Modified:
    incubator/thrift/trunk/lib/cpp/src/server/TNonblockingServer.cpp

Modified: incubator/thrift/trunk/lib/cpp/src/server/TNonblockingServer.cpp
URL: 
http://svn.apache.org/viewvc/incubator/thrift/trunk/lib/cpp/src/server/TNonblockingServer.cpp?rev=676087&r1=676086&r2=676087&view=diff
==============================================================================
--- incubator/thrift/trunk/lib/cpp/src/server/TNonblockingServer.cpp (original)
+++ incubator/thrift/trunk/lib/cpp/src/server/TNonblockingServer.cpp Fri Jul 11 
14:39:58 2008
@@ -356,7 +356,7 @@
     sz = (int32_t)ntohl(sz);
 
     if (sz <= 0) {
-      fprintf(stderr, "TConnection:transition() Negative frame size %d, remote 
side not using TFramedTransport?", sz);
+      fprintf(stderr, "TConnection:transition() Negative frame size %d, remote 
side not using TFramedTransport?\n", sz);
       close();
       return;
     }
@@ -520,7 +520,7 @@
 
     // Fail fast if we could not create a TConnection object
     if (clientConnection == NULL) {
-      fprintf(stderr, "thriftServerEventHandler: failed TConnection factory");
+      fprintf(stderr, "thriftServerEventHandler: failed TConnection 
factory\n");
       close(clientSocket);
       return;
     }


Reply via email to