Fix wrong variable in commented out debug code in rrdata.cpp
This commit is contained in:
parent
0fb3536c7a
commit
8d0a39e1df
1 changed files with 1 additions and 1 deletions
|
@ -231,7 +231,7 @@ uint64_t rrdata::read(std::vector<char>& strm, bool dummy) throw(std::bad_alloc)
|
|||
if(lengthbytes == 3)
|
||||
repeat = 65794 + static_cast<unsigned>(buf2[0]) * 65536 + static_cast<unsigned>(buf2[1]) *
|
||||
256 + buf2[2];
|
||||
//std::cerr << "Decoding " << count << " symbols starting from " << decoding << std::endl;
|
||||
//std::cerr << "Decoding " << repeat << " symbols starting from " << decoding << std::endl;
|
||||
if(!dummy)
|
||||
for(unsigned i = 0; i < repeat; i++)
|
||||
rrdata::add(decoding++);
|
||||
|
|
Loading…
Add table
Reference in a new issue