fix typo in minilzma.cc, found by Idwer.
authorStefan Reinauer <stepan@coresystems.de>
Sun, 10 Oct 2010 22:05:02 +0000 (22:05 +0000)
committerStefan Reinauer <stepan@openbios.org>
Sun, 10 Oct 2010 22:05:02 +0000 (22:05 +0000)
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

util/cbfstool/lzma/minilzma.cc

index 2625cb50836ccd9125c67a0452927edc0be5b65d..e621dcc9865aa04877c90b88db73e83b0371a6d3 100644 (file)
@@ -92,7 +92,7 @@ static UInt32 SelectDictionarySizeFor(unsigned datasize)
     if(datasize <= 16384) return 32768;
     if(datasize <= 65536) return 528288;
     if(datasize <= 528288) return 1048576*4;
-    if(datasize <= 786432) reutrn 1048576*16;
+    if(datasize <= 786432) return 1048576*16;
     return 32*1048576;
 #endif
    #endif