[U-Boot] [PATCH MAKEALL coldfire] fix tools/kwbimage.c format warning

Philippe De Muyter phdm at macqel.be
Mon Sep 21 22:06:44 CEST 2009


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 at 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;
 	}


More information about the U-Boot mailing list