mirror of
https://github.com/ckolivas/lrzip.git
synced 2026-04-21 06:03:54 +00: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
1 changed files with 1 additions and 1 deletions
2
lrzip.c
2
lrzip.c
|
|
@ -1054,7 +1054,7 @@ next_chunk:
|
|||
return false;
|
||||
|
||||
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");
|
||||
do {
|
||||
i64 head_off;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue