mirror of
https://git.tukaani.org/xz.git
synced 2025-02-25 18:08:13 +00:00
xz: Add braces to a for-statement and to an if-statement
No functional changes. Fixes: 5f0c5a04388f8334962c70bc37a8c2ff8f605e0a Fixes: 479fd58d60622331fcbe48fddf756927b9f80d9a
This commit is contained in:
parent
de06b9f0c0
commit
9bef5b8d17
@ -695,7 +695,7 @@ coder_set_compression_settings(void)
|
|||||||
continue;
|
continue;
|
||||||
|
|
||||||
for (uint32_t j = 0; filters[i][j].id != LZMA_VLI_UNKNOWN;
|
for (uint32_t j = 0; filters[i][j].id != LZMA_VLI_UNKNOWN;
|
||||||
j++)
|
j++) {
|
||||||
if ((filters[i][j].id == LZMA_FILTER_LZMA2
|
if ((filters[i][j].id == LZMA_FILTER_LZMA2
|
||||||
|| filters[i][j].id
|
|| filters[i][j].id
|
||||||
== LZMA_FILTER_LZMA1)
|
== LZMA_FILTER_LZMA1)
|
||||||
@ -711,6 +711,7 @@ coder_set_compression_settings(void)
|
|||||||
r->orig_dict_size = opt->dict_size;
|
r->orig_dict_size = opt->dict_size;
|
||||||
opt->dict_size &= ~((UINT32_C(1) << 20) - 1);
|
opt->dict_size &= ~((UINT32_C(1) << 20) - 1);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Loop until all filters use <= memory_limit, or exit.
|
// Loop until all filters use <= memory_limit, or exit.
|
||||||
@ -1288,9 +1289,10 @@ coder_normal(file_pair *pair)
|
|||||||
ret = lzma_code(&strm, action);
|
ret = lzma_code(&strm, action);
|
||||||
|
|
||||||
// Write out if the output buffer became full.
|
// Write out if the output buffer became full.
|
||||||
if (strm.avail_out == 0)
|
if (strm.avail_out == 0) {
|
||||||
if (coder_write_output(pair))
|
if (coder_write_output(pair))
|
||||||
break;
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
#ifdef HAVE_ENCODERS
|
#ifdef HAVE_ENCODERS
|
||||||
if (ret == LZMA_STREAM_END && (action == LZMA_SYNC_FLUSH
|
if (ret == LZMA_STREAM_END && (action == LZMA_SYNC_FLUSH
|
||||||
|
Loading…
x
Reference in New Issue
Block a user