Author: dreiss
Date: Tue Oct  7 16:55:24 2008
New Revision: 702672

URL: http://svn.apache.org/viewvc?rev=702672&view=rev
Log:
Fix a compile bug introduced by r702644

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=702672&r1=702671&r2=702672&view=diff
==============================================================================
--- incubator/thrift/trunk/lib/cpp/src/server/TNonblockingServer.cpp (original)
+++ incubator/thrift/trunk/lib/cpp/src/server/TNonblockingServer.cpp Tue Oct  7 
16:55:24 2008
@@ -258,7 +258,7 @@
           server_->addTask(task);
         } catch (IllegalStateException & ise) {
           // The ThreadManager is not ready to handle any more tasks (it's 
probably shutting down).
-          GlobalOutput.printf(stderr, "IllegalStateException: 
Server::process() %s", ise.what());
+          GlobalOutput.printf("IllegalStateException: Server::process() %s", 
ise.what());
           close();
         }
 


Reply via email to