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_mips/board.c | |
| parent | f354b73e16a86f9e9085471a830605f74f84ea5d (diff) | |
| download | olio-uboot-2014.01-b64f190b7a34224df09b559ca111eb1b733f00ad.tar.xz olio-uboot-2014.01-b64f190b7a34224df09b559ca111eb1b733f00ad.zip | |
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_mips/board.c')
| -rw-r--r-- | lib_mips/board.c | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/lib_mips/board.c b/lib_mips/board.c index 532550b60..09b8b3bb3 100644 --- a/lib_mips/board.c +++ b/lib_mips/board.c @@ -242,12 +242,12 @@ void 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. |