diff options
author | Denys Vlasenko | 2014-12-07 00:42:49 +0100 |
---|---|---|
committer | Denys Vlasenko | 2014-12-07 00:42:49 +0100 |
commit | e7800f351ad9eca012fe27a1c9234692a04419e7 (patch) | |
tree | 4b40f6fb63492c8325bb7b58c5812f0258adbb7b /archival/libarchive/decompress_bunzip2.c | |
parent | 476654cdbeb2923fc5d2485701587b42579e1635 (diff) | |
download | busybox-e7800f351ad9eca012fe27a1c9234692a04419e7.zip busybox-e7800f351ad9eca012fe27a1c9234692a04419e7.tar.gz |
Rename transformer_aux_data_t -> transformer_state_t
No code changes
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'archival/libarchive/decompress_bunzip2.c')
-rw-r--r-- | archival/libarchive/decompress_bunzip2.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/archival/libarchive/decompress_bunzip2.c b/archival/libarchive/decompress_bunzip2.c index 6396fe4..36237e2 100644 --- a/archival/libarchive/decompress_bunzip2.c +++ b/archival/libarchive/decompress_bunzip2.c @@ -731,7 +731,7 @@ void FAST_FUNC dealloc_bunzip(bunzip_data *bd) /* Decompress src_fd to dst_fd. Stops at end of bzip data, not end of file. */ IF_DESKTOP(long long) int FAST_FUNC -unpack_bz2_stream(transformer_aux_data_t *aux, int src_fd, int dst_fd) +unpack_bz2_stream(transformer_state_t *xstate, int src_fd, int dst_fd) { IF_DESKTOP(long long total_written = 0;) bunzip_data *bd; @@ -739,7 +739,7 @@ unpack_bz2_stream(transformer_aux_data_t *aux, int src_fd, int dst_fd) int i; unsigned len; - if (check_signature16(aux, src_fd, BZIP2_MAGIC)) + if (check_signature16(xstate, src_fd, BZIP2_MAGIC)) return -1; outbuf = xmalloc(IOBUF_SIZE); |