Author: hailfinger Date: 2008-05-23 21:59:43 +0200 (Fri, 23 May 2008) New Revision: 685
Modified: coreboot-v3/lib/lzma.c Log: Fix a typo in r684 which caused compilation to fail. Trivial.
Signed-off-by: Carl-Daniel Hailfinger c-d.hailfinger.devel.2006@gmx.net Acked-by: Carl-Daniel Hailfinger c-d.hailfinger.devel.2006@gmx.net
Modified: coreboot-v3/lib/lzma.c =================================================================== --- coreboot-v3/lib/lzma.c 2008-05-23 19:56:50 UTC (rev 684) +++ coreboot-v3/lib/lzma.c 2008-05-23 19:59:43 UTC (rev 685) @@ -34,7 +34,7 @@ } mallocneeds = (LzmaGetNumProbs(&state.Properties) * sizeof(CProb)); if (mallocneeds > LZMA_SCRATCHPAD_SIZE) { - printk(BIOS_WARNING,("Decoder scratchpad too small, have %i, need %i!\n", + printk(BIOS_WARNING, "Decoder scratchpad too small, have %i, need %i!\n", LZMA_SCRATCHPAD_SIZE, mallocneeds); } state.Probs = (CProb *)scratchpad;