commit | a8af11dde6194e7449388148ed573347895b9229 | [log] [tgz] |
---|---|---|
author | David Reiss <dreiss@apache.org> | Wed Oct 06 17:10:11 2010 +0000 |
committer | David Reiss <dreiss@apache.org> | Wed Oct 06 17:10:11 2010 +0000 |
tree | 691561ba85042a2f8ffe92c8fb2cbc377923a4c4 | |
parent | c3b3622158009ea9db85607a4901d05c63108875 [diff] |
THRIFT-926. cpp: Fix an errant argument to a debug statement git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@1005141 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/lib/cpp/src/transport/TFileTransport.cpp b/lib/cpp/src/transport/TFileTransport.cpp index 40841ac..ff69431 100644 --- a/lib/cpp/src/transport/TFileTransport.cpp +++ b/lib/cpp/src/transport/TFileTransport.cpp
@@ -752,7 +752,7 @@ // too large a value for reverse seek, just seek to beginning if (chunk < 0) { - T_DEBUG("Incorrect value for reverse seek. Seeking to beginning...", chunk) + T_DEBUG("Incorrect value for reverse seek. Seeking to beginning..."); chunk = 0; }