mirror of
https://git.tukaani.org/xz.git
synced 2025-02-17 14:08:12 +00:00
Use my_min() instead of MIN() in src/xz/list.c
This should have been done in 920a69a8d8e4203c5edddd829d932130eac188ea.
This commit is contained in:
parent
920a69a8d8
commit
01a414eaf4
@ -156,7 +156,7 @@ parse_indexes(lzma_index **idx, file_pair *pair)
|
||||
do {
|
||||
// Don't give the decoder more input than the
|
||||
// Index size.
|
||||
strm.avail_in = MIN(IO_BUFFER_SIZE, index_size);
|
||||
strm.avail_in = my_min(IO_BUFFER_SIZE, index_size);
|
||||
if (io_pread(pair, &buf, strm.avail_in, pos))
|
||||
goto error;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user