You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@thrift.apache.org by dr...@apache.org on 2010/10/06 19:10:12 UTC

svn commit: r1005141 - /incubator/thrift/trunk/lib/cpp/src/transport/TFileTransport.cpp

Author: dreiss
Date: Wed Oct  6 17:10:11 2010
New Revision: 1005141

URL: http://svn.apache.org/viewvc?rev=1005141&view=rev
Log:
THRIFT-926. cpp: Fix an errant argument to a debug statement

Modified:
    incubator/thrift/trunk/lib/cpp/src/transport/TFileTransport.cpp

Modified: incubator/thrift/trunk/lib/cpp/src/transport/TFileTransport.cpp
URL: http://svn.apache.org/viewvc/incubator/thrift/trunk/lib/cpp/src/transport/TFileTransport.cpp?rev=1005141&r1=1005140&r2=1005141&view=diff
==============================================================================
--- incubator/thrift/trunk/lib/cpp/src/transport/TFileTransport.cpp (original)
+++ incubator/thrift/trunk/lib/cpp/src/transport/TFileTransport.cpp Wed Oct  6 17:10:11 2010
@@ -752,7 +752,7 @@ void TFileTransport::seekToChunk(int32_t
 
   // 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;
   }