aboutsummaryrefslogtreecommitdiff
path: root/src/xz
diff options
context:
space:
mode:
authorJonathan Nieder <jrnieder@gmail.com>2010-05-27 02:31:33 -0500
committerLasse Collin <lasse.collin@tukaani.org>2010-05-27 13:30:48 +0300
commit01a414eaf4be6352c06b48001b041b47e8202faa (patch)
tree5046dc7afc56f0ffdaa34b69dc1a23a6c9e55e2a /src/xz
parentRename MIN() and MAX() to my_min() and my_max(). (diff)
downloadxz-01a414eaf4be6352c06b48001b041b47e8202faa.tar.xz
Use my_min() instead of MIN() in src/xz/list.c
This should have been done in 920a69a8d8e4203c5edddd829d932130eac188ea.
Diffstat (limited to 'src/xz')
-rw-r--r--src/xz/list.c2
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;