From aa8612ee903db447c2f59e0f084e35577fa49db4 Mon Sep 17 00:00:00 2001 From: Stefan Reinauer Date: Sun, 10 Oct 2010 22:05:02 +0000 Subject: [PATCH] fix typo in minilzma.cc, found by Idwer. Signed-off-by: Stefan Reinauer Acked-by: Stefan Reinauer git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5936 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1 --- util/cbfstool/lzma/minilzma.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util/cbfstool/lzma/minilzma.cc b/util/cbfstool/lzma/minilzma.cc index 2625cb508..e621dcc98 100644 --- a/util/cbfstool/lzma/minilzma.cc +++ b/util/cbfstool/lzma/minilzma.cc @@ -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 -- 2.25.1