diff options
author | Lasse Collin <lasse.collin@tukaani.org> | 2010-05-16 18:42:22 +0300 |
---|---|---|
committer | Lasse Collin <lasse.collin@tukaani.org> | 2010-05-16 18:42:22 +0300 |
commit | b6377fc990f9b8651149cae0fecb8b9c5904e26d (patch) | |
tree | a3671b43efa3119d2a978c6acf270f7dad315e27 /src/xz/coder.c | |
parent | Omit lzma_restrict from the API headers. (diff) | |
download | xz-b6377fc990f9b8651149cae0fecb8b9c5904e26d.tar.xz |
Split message_filters().
message_filters_to_str() converts the filter chain to
a string. message_filters_show() replaces the original
message_filters().
uint32_to_optstr() was also added to show the dictionary
size in nicer format when possible.
Diffstat (limited to 'src/xz/coder.c')
-rw-r--r-- | src/xz/coder.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xz/coder.c b/src/xz/coder.c index 2ee0c704..8d882d26 100644 --- a/src/xz/coder.c +++ b/src/xz/coder.c @@ -168,7 +168,7 @@ coder_set_compression_settings(void) "with the .xz format")); // Print the selected filter chain. - message_filters(V_DEBUG, filters); + message_filters_show(V_DEBUG, filters); // If using --format=raw, we can be decoding. The memusage function // also validates the filter chain and the options used for the |