From: Wolfgang Denk Date: Tue, 15 Sep 2009 19:13:27 +0000 (+0200) Subject: kwbimage.c: Fix compile warning when building on 64 bit systems (again) X-Git-Tag: v2010.09-rc1~28^2~7^2~42^2~102 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=9ef45c847a9903d7b186c69d538a1865d3ac2e53;p=u-boot kwbimage.c: Fix compile warning when building on 64 bit systems (again) Commit 51003b89 attempted to fix a build problem on 64 bit systems, but just turned it into a build problem on 32 bit systems (silly me). Now do the Right Thing (TM) and use a "%zu" printf format. Also fix spelling error. Signed-off-by: Wolfgang Denk --- diff --git a/tools/kwbimage.c b/tools/kwbimage.c index ee067cbd81..7b26920185 100644 --- a/tools/kwbimage.c +++ b/tools/kwbimage.c @@ -131,7 +131,7 @@ static uint32_t kwbimage_checksum32 (uint32_t *start, uint32_t len, uint32_t csu return 0; if (len % sizeof(uint32_t)) { - printf ("Error:%s[%d] - lenght is not in multiple of %ld\n", + printf ("Error:%s[%d] - length is not in multiple of %zu\n", __FUNCTION__, len, sizeof(uint32_t)); return 0; }