diff options
author | Jonathan Nieder <jrnieder@gmail.com> | 2010-05-27 02:31:33 -0500 |
---|---|---|
committer | Lasse Collin <lasse.collin@tukaani.org> | 2010-05-27 13:30:48 +0300 |
commit | 01a414eaf4be6352c06b48001b041b47e8202faa (patch) | |
tree | 5046dc7afc56f0ffdaa34b69dc1a23a6c9e55e2a | |
parent | Rename MIN() and MAX() to my_min() and my_max(). (diff) | |
download | xz-01a414eaf4be6352c06b48001b041b47e8202faa.tar.xz |
Use my_min() instead of MIN() in src/xz/list.c
This should have been done in
920a69a8d8e4203c5edddd829d932130eac188ea.
-rw-r--r-- | src/xz/list.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xz/list.c b/src/xz/list.c index 91707b91..3de838cd 100644 --- a/src/xz/list.c +++ b/src/xz/list.c @@ -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; |