mirror of
https://github.com/ckolivas/lrzip.git
synced 2025-12-06 07:12:00 +01:00
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:
parent
465afe830f
commit
562a643481
2
lrzip.c
2
lrzip.c
|
|
@ -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;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue