commit | c53a5944eda576d1920cf44359e310b1205361cb | [log] [tgz] |
---|---|---|
author | David Reiss <dreiss@apache.org> | Tue Oct 07 23:55:24 2008 +0000 |
committer | David Reiss <dreiss@apache.org> | Tue Oct 07 23:55:24 2008 +0000 |
tree | 06e9bda6ceff532b2f6466abb8da0f8071d4f832 | |
parent | 9837aaf097729beb2d3c656bb68c9c373faa84e9 [diff] [blame] |
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 c0be8ef..06f11aa 100644 --- a/lib/cpp/src/server/TNonblockingServer.cpp +++ b/lib/cpp/src/server/TNonblockingServer.cpp
@@ -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(); }