aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2018-11-02 14:20:54 +0100
committerDenys Vlasenko <vda.linux@googlemail.com>2018-11-02 14:20:54 +0100
commit97c2a6d0828f2b70de623c6642e5507f36e16cb4 (patch)
tree7f704fd9003b8ed644baeb1357628a07409ee9ab
parent43794ff45d18d807d6dcd80a5eb5f451d479370c (diff)
downloadbusybox-w32-97c2a6d0828f2b70de623c6642e5507f36e16cb4.tar.gz
busybox-w32-97c2a6d0828f2b70de623c6642e5507f36e16cb4.tar.bz2
busybox-w32-97c2a6d0828f2b70de623c6642e5507f36e16cb4.zip
remove FAST_FUNC on a static function
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r--archival/libarchive/decompress_bunzip2.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/archival/libarchive/decompress_bunzip2.c b/archival/libarchive/decompress_bunzip2.c
index 6f2c49fbc..78366f26a 100644
--- a/archival/libarchive/decompress_bunzip2.c
+++ b/archival/libarchive/decompress_bunzip2.c
@@ -575,7 +575,7 @@ static int get_next_block(bunzip_data *bd)
575 in outbuf. IOW: on EOF returns len ("all bytes are not filled"), not 0. 575 in outbuf. IOW: on EOF returns len ("all bytes are not filled"), not 0.
576 (Why? This allows to get rid of one local variable) 576 (Why? This allows to get rid of one local variable)
577*/ 577*/
578static int FAST_FUNC read_bunzip(bunzip_data *bd, char *outbuf, int len) 578static int read_bunzip(bunzip_data *bd, char *outbuf, int len)
579{ 579{
580 const uint32_t *dbuf; 580 const uint32_t *dbuf;
581 int pos, current, previous; 581 int pos, current, previous;
@@ -809,7 +809,7 @@ unpack_bz2_stream(transformer_state_t *xstate)
809 /* Observed case when i == RETVAL_OK: 809 /* Observed case when i == RETVAL_OK:
810 * "bzcat z.bz2", where "z.bz2" is a bzipped zero-length file 810 * "bzcat z.bz2", where "z.bz2" is a bzipped zero-length file
811 * (to be exact, z.bz2 is exactly these 14 bytes: 811 * (to be exact, z.bz2 is exactly these 14 bytes:
812 * 42 5a 68 39 17 72 45 38 50 90 00 00 00 00). 812 * 42 5a 68 39 17 72 45 38 50 90 00 00 00 00).
813 */ 813 */
814 && i != RETVAL_OK 814 && i != RETVAL_OK
815 ) { 815 ) {