mirror of
https://git.tukaani.org/xz.git
synced 2024-04-04 12:36:23 +02:00
Fix compiling with -Werror.
This commit is contained in:
parent
b5fbab6123
commit
d8b41eedce
1 changed files with 2 additions and 2 deletions
|
@ -912,8 +912,8 @@ message_filters_to_str(const lzma_filter *filters, bool all_known)
|
|||
case LZMA_FILTER_LZMA1:
|
||||
case LZMA_FILTER_LZMA2: {
|
||||
const lzma_options_lzma *opt = filters[i].options;
|
||||
const char *mode;
|
||||
const char *mf;
|
||||
const char *mode = NULL;
|
||||
const char *mf = NULL;
|
||||
|
||||
if (all_known) {
|
||||
switch (opt->mode) {
|
||||
|
|
Loading…
Reference in a new issue