Code Review
/
common
/
thrift.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
review
|
tree
raw
|
patch
| inline |
side by side
(parent:
c3b3622
)
THRIFT-926. cpp: Fix an errant argument to a debug statement
author
David Reiss
<dreiss@apache.org>
Wed, 6 Oct 2010 17:10:11 +0000
(17:10 +0000)
committer
David 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
patch
|
blob
|
history
diff --git
a/lib/cpp/src/transport/TFileTransport.cpp
b/lib/cpp/src/transport/TFileTransport.cpp
index
40841ac
..
ff69431
100644
(file)
--- a/
lib/cpp/src/transport/TFileTransport.cpp
+++ b/
lib/cpp/src/transport/TFileTransport.cpp
@@
-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;
}