From: Marek Vasut Date: Mon, 24 Oct 2011 23:40:02 +0000 (+0000) Subject: GCC4.6: Squash warning in bus_vcxk.c X-Git-Tag: v2011.12-rc1~357 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=458f4381691a083e8a4004d1fe444a1951d75354;p=u-boot GCC4.6: Squash warning in bus_vcxk.c bus_vcxk.c:167:2: warning: format '%d' expects type 'int', but argument 2 has type 'u_long' bus_vcxk.c:167:2: warning: format '%d' expects type 'int', but argument 3 has type 'u_long' Signed-off-by: Marek Vasut Cc: Wolfgang Denk Cc: Simon Glass Cc: Mike Frysinger --- diff --git a/drivers/video/bus_vcxk.c b/drivers/video/bus_vcxk.c index 67a59a75d6..7aecb92f69 100644 --- a/drivers/video/bus_vcxk.c +++ b/drivers/video/bus_vcxk.c @@ -164,7 +164,7 @@ int vcxk_init(unsigned long width, unsigned long height) #else #error CONFIG_SYS_VCXK_DEFAULT_LINEALIGN is invalid #endif - debug("linesize ((%d + 15) / 8 & ~0x1) = %d\n", + debug("linesize ((%ld + 15) / 8 & ~0x1) = %ld\n", display_width, display_bwidth); #ifdef CONFIG_SYS_VCXK_AUTODETECT