Updated Branches: refs/heads/master f1ac28429 -> 42cb873ea
THRIFT-2072 TNonblocking server compilation FAILS with C++11 support enabled Patch: Konrad Grochowski Project: http://git-wip-us.apache.org/repos/asf/thrift/repo Commit: http://git-wip-us.apache.org/repos/asf/thrift/commit/42cb873e Tree: http://git-wip-us.apache.org/repos/asf/thrift/tree/42cb873e Diff: http://git-wip-us.apache.org/repos/asf/thrift/diff/42cb873e Branch: refs/heads/master Commit: 42cb873ea9984b08346a6e3f0713578f0ed4efe8 Parents: f1ac284 Author: Roger Meier <[email protected]> Authored: Fri Jun 28 22:49:14 2013 +0200 Committer: Roger Meier <[email protected]> Committed: Fri Jun 28 22:49:14 2013 +0200 ---------------------------------------------------------------------- lib/cpp/src/thrift/server/TNonblockingServer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/thrift/blob/42cb873e/lib/cpp/src/thrift/server/TNonblockingServer.cpp ---------------------------------------------------------------------- diff --git a/lib/cpp/src/thrift/server/TNonblockingServer.cpp b/lib/cpp/src/thrift/server/TNonblockingServer.cpp index 12b4b8f..7902776 100644 --- a/lib/cpp/src/thrift/server/TNonblockingServer.cpp +++ b/lib/cpp/src/thrift/server/TNonblockingServer.cpp @@ -477,7 +477,7 @@ void TNonblockingServer::TConnection::workSocket() { // Don't allow giant frame sizes. This prevents bad clients from // causing us to try and allocate a giant buffer. GlobalOutput.printf("TNonblockingServer: frame size too large " - "(%"PRIu32" > %"PRIu64") from client %s. " + "(%" PRIu32 " > %" PRIu64 ") from client %s. " "Remote side not using TFramedTransport?", readWant_, (uint64_t)server_->getMaxFrameSize(),
