diff options
author | Stefan Reinauer <stepan@coresystems.de> | 2010-10-10 22:05:02 +0000 |
---|---|---|
committer | Stefan Reinauer <stepan@openbios.org> | 2010-10-10 22:05:02 +0000 |
commit | aa8612ee903db447c2f59e0f084e35577fa49db4 (patch) | |
tree | c2e72fe6e82a774e44eedaec554da2f2483b874e | |
parent | c4f98b63a72edc6a73105b76a115b9a29b749878 (diff) | |
download | coreboot-aa8612ee903db447c2f59e0f084e35577fa49db4.tar.xz |
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
-rw-r--r-- | util/cbfstool/lzma/minilzma.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/cbfstool/lzma/minilzma.cc b/util/cbfstool/lzma/minilzma.cc index 2625cb5083..e621dcc986 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 |