Author: stepan
Date: Mon Oct 11 00:05:02 2010
New Revision: 5936
URL: https://tracker.coreboot.org/trac/coreboot/changeset/5936

Log:
fix typo in minilzma.cc, found by Idwer.

Signed-off-by: Stefan Reinauer <[email protected]>
Acked-by: Stefan Reinauer <[email protected]>

Modified:
   trunk/util/cbfstool/lzma/minilzma.cc

Modified: trunk/util/cbfstool/lzma/minilzma.cc
==============================================================================
--- trunk/util/cbfstool/lzma/minilzma.cc        Sun Oct 10 23:15:53 2010        
(r5935)
+++ trunk/util/cbfstool/lzma/minilzma.cc        Mon Oct 11 00:05:02 2010        
(r5936)
@@ -92,7 +92,7 @@
     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

-- 
coreboot mailing list: [email protected]
http://www.coreboot.org/mailman/listinfo/coreboot

Reply via email to