Fix printf errors.
authorAndrew Klossner <andrew@cesa.opbu.xerox.com>
Mon, 7 Jul 2008 13:41:14 +0000 (06:41 -0700)
committerWolfgang Denk <wd@denx.de>
Wed, 9 Jul 2008 21:55:46 +0000 (23:55 +0200)
commitdc4b0b38d4aadf08826f6c31270f1eecd27964fd
tree54bcc5c3f6e5e25e94fb3baa445f4beb02c1a045
parenta292d2265ef0463be4e7c4827a8a0dec556f0a88
Fix printf errors.

The compiler will help find mismatches between printf formats and
arguments if you let it.  This patch adds the necessary attributes to
declarations in include/common.h, then begins to correct the resulting
compiler warnings.  Some of these were bugs, e.g., "$d" instead of
"%d" and incorrect arguments.  Others were just annoying, like
int-long mismatches on a system where both are 32 bits.  It's worth
fixing the annoying errors to catch the real ones.

Signed-off-by: Andrew Klossner <andrew@cesa.opbu.xerox.com>
common/cmd_fdt.c
common/main.c
cpu/mpc85xx/traps.c
include/common.h
lib_ppc/bootm.c
net/tftp.c