From 7e8ffa4ed8194e11c52830a7ea47e28f496c24d5 Mon Sep 17 00:00:00 2001 From: Simon Glass Date: Sun, 14 Dec 2014 17:15:35 -0700 Subject: [PATCH] x86: ifdtool: Correct a debug() missing parameter This is missing a parameter. Fix it to avoid a warning when debug is enabled. Signed-off-by: Simon Glass Reviewed-by: Bin Meng --- tools/ifdtool.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tools/ifdtool.c b/tools/ifdtool.c index 4a27b82..4cdfdcc 100644 --- a/tools/ifdtool.c +++ b/tools/ifdtool.c @@ -54,7 +54,8 @@ static struct fdbar_t *find_fd(char *image, int size) return NULL; } - debug("Found Flash Descriptor signature at 0x%08x\n", i); + debug("Found Flash Descriptor signature at 0x%08lx\n", + (char *)ptr - image); return (struct fdbar_t *)ptr; }