From: David Reiss Date: Tue, 7 Oct 2008 23:55:24 +0000 (+0000) Subject: Fix a compile bug introduced by r702644 X-Git-Tag: 0.2.0~434 X-Git-Url: https://source.supwisdom.com/gerrit/gitweb?a=commitdiff_plain;h=c53a5944eda576d1920cf44359e310b1205361cb;p=common%2Fthrift.git Fix a compile bug introduced by r702644 git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@702672 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/lib/cpp/src/server/TNonblockingServer.cpp b/lib/cpp/src/server/TNonblockingServer.cpp index c0be8ef4..06f11aa7 100644 --- a/lib/cpp/src/server/TNonblockingServer.cpp +++ b/lib/cpp/src/server/TNonblockingServer.cpp @@ -258,7 +258,7 @@ void TConnection::transition() { 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(); }