Fix wrong variable in commented out debug code in rrdata.cpp

This commit is contained in:
Ilari Liusvaara 2011-11-10 21:23:04 +02:00
parent 0fb3536c7a
commit 8d0a39e1df

View file

@ -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++);