diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2014-12-07 00:42:49 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2014-12-07 00:42:49 +0100 |
commit | e7800f351ad9eca012fe27a1c9234692a04419e7 (patch) | |
tree | 4b40f6fb63492c8325bb7b58c5812f0258adbb7b /archival/lzop.c | |
parent | 476654cdbeb2923fc5d2485701587b42579e1635 (diff) | |
download | busybox-w32-e7800f351ad9eca012fe27a1c9234692a04419e7.tar.gz busybox-w32-e7800f351ad9eca012fe27a1c9234692a04419e7.tar.bz2 busybox-w32-e7800f351ad9eca012fe27a1c9234692a04419e7.zip |
Rename transformer_aux_data_t -> transformer_state_t
No code changes
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'archival/lzop.c')
-rw-r--r-- | archival/lzop.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/archival/lzop.c b/archival/lzop.c index 5062d9300..73d11a705 100644 --- a/archival/lzop.c +++ b/archival/lzop.c | |||
@@ -1099,7 +1099,7 @@ static char* FAST_FUNC make_new_name_lzop(char *filename, const char *expected_e | |||
1099 | return xasprintf("%s.lzo", filename); | 1099 | return xasprintf("%s.lzo", filename); |
1100 | } | 1100 | } |
1101 | 1101 | ||
1102 | static IF_DESKTOP(long long) int FAST_FUNC pack_lzop(transformer_aux_data_t *aux UNUSED_PARAM) | 1102 | static IF_DESKTOP(long long) int FAST_FUNC pack_lzop(transformer_state_t *xstate UNUSED_PARAM) |
1103 | { | 1103 | { |
1104 | if (option_mask32 & OPT_DECOMPRESS) | 1104 | if (option_mask32 & OPT_DECOMPRESS) |
1105 | return do_lzo_decompress(); | 1105 | return do_lzo_decompress(); |