As pointed out by Peter Hyman Examining the output of max verbose lrzip -vvi revealed that the offset shown for stream 1 is incorrect. It uses the same offset as stream 0. This occurs for all chunks.

This commit is contained in:
Con Kolivas 2021-11-16 22:07:13 +11:00
parent 465afe830f
commit 562a643481

View file

@ -1054,7 +1054,7 @@ next_chunk:
return false; return false;
print_verbose("Stream: %d\n", stream); print_verbose("Stream: %d\n", stream);
print_maxverbose("Offset: %lld\n", ofs); print_maxverbose("Offset: %lld\n", stream_head[stream] + ofs);
print_verbose("Block\tComp\tPercent\tSize\n"); print_verbose("Block\tComp\tPercent\tSize\n");
do { do {
i64 head_off; i64 head_off;