summaryrefslogtreecommitdiffstats
path: root/lzip.h
diff options
context:
space:
mode:
authorDaniel Baumann <mail@daniel-baumann.ch>2015-11-07 14:59:16 +0000
committerDaniel Baumann <mail@daniel-baumann.ch>2015-11-07 14:59:16 +0000
commitf55abdbcd36dd61c5896cbb799d0cc28095e87a7 (patch)
treeeb53586003c8f716664af95cfadd231ae47842c7 /lzip.h
parentAdding upstream version 1.6~rc1. (diff)
downloadpdlzip-f55abdbcd36dd61c5896cbb799d0cc28095e87a7.tar.xz
pdlzip-f55abdbcd36dd61c5896cbb799d0cc28095e87a7.zip
Adding upstream version 1.6.upstream/1.6
Signed-off-by: Daniel Baumann <mail@daniel-baumann.ch>
Diffstat (limited to 'lzip.h')
-rw-r--r--lzip.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lzip.h b/lzip.h
index f99edba..3b8d172 100644
--- a/lzip.h
+++ b/lzip.h
@@ -164,10 +164,10 @@ static inline bool Fh_set_dictionary_size( File_header data, const unsigned sz )
if( sz > min_dictionary_size )
{
const unsigned base_size = 1 << data[5];
- const unsigned wedge = base_size / 16;
+ const unsigned fraction = base_size / 16;
int i;
for( i = 7; i >= 1; --i )
- if( base_size - ( i * wedge ) >= sz )
+ if( base_size - ( i * fraction ) >= sz )
{ data[5] |= ( i << 5 ); break; }
}
return true;