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
1 changed files with 1 additions and 1 deletions

View File

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