1
0
Fork 0
mirror of https://git.tukaani.org/xz.git synced 2024-04-04 12:36:23 +02:00

xz: Fix uint64_t vs. size_t which broke 32-bit build.

Thanks to Christian Hesse.
This commit is contained in:
Lasse Collin 2014-05-08 18:03:09 +03:00
parent d716acdae3
commit ed9ac85822

View file

@ -522,7 +522,7 @@ coder_init(file_pair *pair)
static void
split_block(uint64_t *block_remaining,
uint64_t *next_block_remaining,
uint64_t *list_pos)
size_t *list_pos)
{
if (*next_block_remaining > 0) {
// The Block at *list_pos has previously been split up.