fix typo in minilzma.cc, found by Idwer.
Signed-off-by: Stefan Reinauer <stepan@coresystems.de> Acked-by: Stefan Reinauer <stepan@coresystems.de> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5936 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
parent
c4f98b63a7
commit
aa8612ee90
|
@ -92,7 +92,7 @@ static UInt32 SelectDictionarySizeFor(unsigned datasize)
|
||||||
if(datasize <= 16384) return 32768;
|
if(datasize <= 16384) return 32768;
|
||||||
if(datasize <= 65536) return 528288;
|
if(datasize <= 65536) return 528288;
|
||||||
if(datasize <= 528288) return 1048576*4;
|
if(datasize <= 528288) return 1048576*4;
|
||||||
if(datasize <= 786432) reutrn 1048576*16;
|
if(datasize <= 786432) return 1048576*16;
|
||||||
return 32*1048576;
|
return 32*1048576;
|
||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue