THRIFT-926. cpp: Fix an errant argument to a debug statement
authorDavid Reiss <dreiss@apache.org>
Wed, 6 Oct 2010 17:10:11 +0000 (17:10 +0000)
committerDavid Reiss <dreiss@apache.org>
Wed, 6 Oct 2010 17:10:11 +0000 (17:10 +0000)
git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@1005141 13f79535-47bb-0310-9956-ffa450edef68

lib/cpp/src/transport/TFileTransport.cpp

index 40841ac..ff69431 100644 (file)
@@ -752,7 +752,7 @@ void TFileTransport::seekToChunk(int32_t chunk) {
 
   // 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;
   }