diff options
author | Wolfgang Denk <wd@denx.de> | 2008-07-14 15:06:35 +0200 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2008-07-14 15:06:35 +0200 |
commit | b64f190b7a34224df09b559ca111eb1b733f00ad (patch) | |
tree | 1b3461f4d02a4872bd3c8bd186d5d58f2288e173 /lib_m68k | |
parent | f354b73e16a86f9e9085471a830605f74f84ea5d (diff) |
Fix printf() format issues with sizeof_t types by using %zu
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
Signed-off-by: Wolfgang Denk <wd@denx.de>
Diffstat (limited to 'lib_m68k')
-rw-r--r-- | lib_m68k/board.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib_m68k/board.c b/lib_m68k/board.c index d27c89c6450..a13ea2682bb 100644 --- a/lib_m68k/board.c +++ b/lib_m68k/board.c @@ -347,11 +347,11 @@ board_init_f (ulong bootflag) addr_sp -= sizeof (bd_t); bd = (bd_t *) addr_sp; gd->bd = bd; - debug ("Reserving %d Bytes for Board Info at: %08lx\n", + debug ("Reserving %zu Bytes for Board Info at: %08lx\n", sizeof (bd_t), addr_sp); addr_sp -= sizeof (gd_t); id = (gd_t *) addr_sp; - debug ("Reserving %d Bytes for Global Data at: %08lx\n", + debug ("Reserving %zu Bytes for Global Data at: %08lx\n", sizeof (gd_t), addr_sp); /* Reserve memory for boot params. */ |