
21 Sep
2009
21 Sep
'09
10:06 p.m.
Hi all,
This fixes the following warnings when running MAKEALL for coldfire : tools/kwbimage.c: In function #kwbimage_checksum32#: tools/kwbimage.c:135: warning: format #%ld# expects type #long int#, but argument 4 has type #unsigned int#
Signed-off-by: Philippe De Muyter phdm@macqel.be
diff -ru a/tools/kwbimage.c b/tools/kwbimage.c --- a/tools/kwbimage.c 2009-09-17 23:28:31.000000000 +0200 +++ b/tools/kwbimage.c 2009-09-21 19:40:19.000000000 +0200 @@ -131,7 +131,7 @@ 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 %u\n", __FUNCTION__, len, sizeof(uint32_t)); return 0; }