xz: Change size_t to uint32_t in a few places.

This commit is contained in:
Lasse Collin 2011-04-08 17:53:05 +03:00
parent 411013ea45
commit 9edd6ee895
2 changed files with 4 additions and 4 deletions

View File

@ -39,10 +39,10 @@ static io_buf in_buf;
static io_buf out_buf;
/// Number of filters. Zero indicates that we are using a preset.
static size_t filters_count = 0;
static uint32_t filters_count = 0;
/// Number of the preset (0-9)
static size_t preset_number = 6;
static uint32_t preset_number = 6;
/// If a preset is used (no custom filter chain) and preset_extreme is true,
/// a significantly slower compression is used to achieve slightly better
@ -66,7 +66,7 @@ coder_set_check(lzma_check new_check)
extern void
coder_set_preset(size_t new_preset)
coder_set_preset(uint32_t new_preset)
{
preset_number = new_preset;

View File

@ -52,7 +52,7 @@ extern uint64_t opt_block_size;
extern void coder_set_check(lzma_check check);
/// Set preset number
extern void coder_set_preset(size_t new_preset);
extern void coder_set_preset(uint32_t new_preset);
/// Enable extreme mode
extern void coder_set_extreme(void);