diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2018-02-03 20:19:51 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2018-02-03 20:19:51 +0100 |
commit | c9ae8d770bf8a21fec962f67b759569b263c68fc (patch) | |
tree | 8f5b7684068200d228f99c1bda3eb3ff81ca971b /archival/libarchive/bz/bzlib.c | |
parent | 10f516500ec8bbf2a9fb2ac53f88ba89f7472c17 (diff) |
bzip2: pass sorting params through EState* pointer
function old new delta
mainGtU 499 515 +16
sendMTFValues 2085 2094 +9
mainSort 1116 1119 +3
generateMTFValues 357 356 -1
fallbackSort 1719 1705 -14
mainQSort3 1163 1141 -22
BZ2_blockSort 118 85 -33
------------------------------------------------------------------------------
(add/remove: 0/0 grow/shrink: 3/4 up/down: 28/-70) Total: -42 bytes
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'archival/libarchive/bz/bzlib.c')
-rw-r--r-- | archival/libarchive/bz/bzlib.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/archival/libarchive/bz/bzlib.c b/archival/libarchive/bz/bzlib.c index ef98bb213..9af2f026d 100644 --- a/archival/libarchive/bz/bzlib.c +++ b/archival/libarchive/bz/bzlib.c @@ -87,7 +87,7 @@ int isempty_RL(EState* s) static void BZ2_bzCompressInit(bz_stream *strm, int blockSize100k) { - int32_t n; + unsigned n; EState* s; s = xzalloc(sizeof(EState)); |