aboutsummaryrefslogtreecommitdiff
path: root/src/coreboot.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/coreboot.c')
-rw-r--r--src/coreboot.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/coreboot.c b/src/coreboot.c
index db0063b..554ea81 100644
--- a/src/coreboot.c
+++ b/src/coreboot.c
@@ -326,7 +326,7 @@ ulzma(u8 *dst, u32 maxlen, const u8 *src, u32 srclen)
u8 scratch[15980];
int need = (LzmaGetNumProbs(&state.Properties) * sizeof(CProb));
if (need > sizeof(scratch)) {
- dprintf(1, "LzmaDecode need %d have %d\n", need, sizeof(scratch));
+ dprintf(1, "LzmaDecode need %d have %d\n", need, (unsigned int)sizeof(scratch));
return -1;
}
state.Probs = (CProb *)scratch;