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 | |
| 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>
| -rw-r--r-- | common/lcd.c | 2 | ||||
| -rw-r--r-- | cpu/mpc8xx/video.c | 4 | ||||
| -rw-r--r-- | drivers/serial/usbtty.c | 4 | ||||
| -rw-r--r-- | fs/jffs2/jffs2_1pass.c | 10 | ||||
| -rw-r--r-- | fs/jffs2/jffs2_nand_1pass.c | 10 | ||||
| -rw-r--r-- | lib_m68k/board.c | 4 | ||||
| -rw-r--r-- | lib_mips/board.c | 4 | ||||
| -rw-r--r-- | lib_ppc/board.c | 4 | ||||
| -rw-r--r-- | net/bootp.c | 2 | 
9 files changed, 24 insertions, 20 deletions
| diff --git a/common/lcd.c b/common/lcd.c index ebf377aa8..04ef4e387 100644 --- a/common/lcd.c +++ b/common/lcd.c @@ -539,7 +539,7 @@ void bitmap_plot (int x, int y)  	debug ("Logo: width %d  height %d  colors %d  cmap %d\n",  		BMP_LOGO_WIDTH, BMP_LOGO_HEIGHT, BMP_LOGO_COLORS, -		sizeof(bmp_logo_palette)/(sizeof(ushort))); +		(int)(sizeof(bmp_logo_palette)/(sizeof(ushort))));  	bmap = &bmp_logo_bitmap[0];  	fb   = (uchar *)(lcd_base + y * lcd_line_length + x); diff --git a/cpu/mpc8xx/video.c b/cpu/mpc8xx/video.c index 8bf8e469c..ef9116560 100644 --- a/cpu/mpc8xx/video.c +++ b/cpu/mpc8xx/video.c @@ -833,10 +833,10 @@ static void video_encoder_init (void)  		puts ("[VIDEO ENCODER] Configuring the encoder...\n"); -		printf ("Sending %d bytes (@ %08lX) to I2C 0x%X:\n   ", +		printf ("Sending %zu bytes (@ %08lX) to I2C 0x%lX:\n   ",  			sizeof(video_encoder_data),  			(ulong)video_encoder_data, -			VIDEO_I2C_ADDR); +			(ulong)VIDEO_I2C_ADDR);  		for (i=0; i<sizeof(video_encoder_data); ++i) {  			printf(" %02X", video_encoder_data[i]);  		} diff --git a/drivers/serial/usbtty.c b/drivers/serial/usbtty.c index cc2bdac47..2bc5c3c83 100644 --- a/drivers/serial/usbtty.c +++ b/drivers/serial/usbtty.c @@ -529,8 +529,8 @@ int drv_usbtty_init (void)  	}  	snlen = strlen(sn);  	if (snlen > sizeof(serial_number) - 1) { -		printf ("Warning: serial number %s is too long (%d > %d)\n", -			sn, snlen, sizeof(serial_number) - 1); +		printf ("Warning: serial number %s is too long (%d > %lu)\n", +			sn, snlen, (ulong)(sizeof(serial_number) - 1));  		snlen = sizeof(serial_number) - 1;  	}  	memcpy (serial_number, sn, snlen); diff --git a/fs/jffs2/jffs2_1pass.c b/fs/jffs2/jffs2_1pass.c index 5c1d26525..8a06777ae 100644 --- a/fs/jffs2/jffs2_1pass.c +++ b/fs/jffs2/jffs2_1pass.c @@ -1213,16 +1213,18 @@ jffs2_1pass_build_lists(struct part_info * part)  			} else if (node->nodetype == JFFS2_NODETYPE_CLEANMARKER) {  				if (node->totlen != sizeof(struct jffs2_unknown_node))  					printf("OOPS Cleanmarker has bad size " -						"%d != %u\n", node->totlen, +						"%d != %zu\n", +						node->totlen,  						sizeof(struct jffs2_unknown_node));  			} else if (node->nodetype == JFFS2_NODETYPE_PADDING) {  				if (node->totlen < sizeof(struct jffs2_unknown_node))  					printf("OOPS Padding has bad size " -						"%d < %u\n", node->totlen, +						"%d < %zu\n", +						node->totlen,  						sizeof(struct jffs2_unknown_node));  			} else { -				printf("Unknown node type: %x len %d " -					"offset 0x%x\n", node->nodetype, +				printf("Unknown node type: %x len %d offset 0x%x\n", +					node->nodetype,  					node->totlen, offset);  			}  			offset += ((node->totlen + 3) & ~3); diff --git a/fs/jffs2/jffs2_nand_1pass.c b/fs/jffs2/jffs2_nand_1pass.c index d95f5513b..3ce9c9825 100644 --- a/fs/jffs2/jffs2_nand_1pass.c +++ b/fs/jffs2/jffs2_nand_1pass.c @@ -864,16 +864,18 @@ jffs2_1pass_build_lists(struct part_info * part)  			} else if (node->nodetype == JFFS2_NODETYPE_CLEANMARKER) {  				if (node->totlen != sizeof(struct jffs2_unknown_node))  					printf("OOPS Cleanmarker has bad size " -						"%d != %d\n", node->totlen, +						"%d != %zu\n", +						node->totlen,  						sizeof(struct jffs2_unknown_node));  			} else if (node->nodetype == JFFS2_NODETYPE_PADDING) {  				if (node->totlen < sizeof(struct jffs2_unknown_node))  					printf("OOPS Padding has bad size " -						"%d < %d\n", node->totlen, +						"%d < %zu\n", +						node->totlen,  						sizeof(struct jffs2_unknown_node));  			} else { -				printf("Unknown node type: %x len %d " -					"offset 0x%x\n", node->nodetype, +				printf("Unknown node type: %x len %d offset 0x%x\n", +					node->nodetype,  					node->totlen, offset);  			}  			offset += ((node->totlen + 3) & ~3); diff --git a/lib_m68k/board.c b/lib_m68k/board.c index d27c89c64..a13ea2682 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. */ 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. diff --git a/lib_ppc/board.c b/lib_ppc/board.c index 1bc2f46d4..71a70db50 100644 --- a/lib_ppc/board.c +++ b/lib_ppc/board.c @@ -524,11 +524,11 @@ 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);  	/* diff --git a/net/bootp.c b/net/bootp.c index 3c0614c5c..f48744abf 100644 --- a/net/bootp.c +++ b/net/bootp.c @@ -313,7 +313,7 @@ BootpHandler(uchar * pkt, unsigned dest, unsigned src, unsigned len)  	Bootp_t *bp;  	char	*s; -	debug ("got BOOTP packet (src=%d, dst=%d, len=%d want_len=%d)\n", +	debug ("got BOOTP packet (src=%d, dst=%d, len=%d want_len=%zu)\n",  		src, dest, len, sizeof (Bootp_t));  	bp = (Bootp_t *)pkt; |