diff options
author | Denys Vlasenko | 2018-02-03 17:44:00 +0100 |
---|---|---|
committer | Denys Vlasenko | 2018-02-03 17:44:00 +0100 |
commit | c364d32ccc030c04b5289f0ffea0197f4ff7e666 (patch) | |
tree | 1a3b780ada8c85296bad2ffdd2bd34ba76aa3588 /archival/libarchive/bz/bzlib_private.h | |
parent | df23f55e395d78d9cfc0fc5054651f5da58dcf25 (diff) | |
download | busybox-c364d32ccc030c04b5289f0ffea0197f4ff7e666.zip busybox-c364d32ccc030c04b5289f0ffea0197f4ff7e666.tar.gz |
bzip2: runningOrder[] values are always 0..255, make it uint8
function old new delta
mainSort 1171 1124 -47
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'archival/libarchive/bz/bzlib_private.h')
-rw-r--r-- | archival/libarchive/bz/bzlib_private.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/archival/libarchive/bz/bzlib_private.h b/archival/libarchive/bz/bzlib_private.h index 8e44a8e..4acaef8 100644 --- a/archival/libarchive/bz/bzlib_private.h +++ b/archival/libarchive/bz/bzlib_private.h @@ -192,7 +192,7 @@ typedef struct EState { int32_t BZ2_hbMakeCodeLengths__weight[BZ_MAX_ALPHA_SIZE * 2]; int32_t BZ2_hbMakeCodeLengths__parent[BZ_MAX_ALPHA_SIZE * 2]; - int32_t mainSort__runningOrder[256]; + uint8_t mainSort__runningOrder[256]; int32_t mainSort__copyStart[256]; int32_t mainSort__copyEnd[256]; } EState; |