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 /fs | |
| 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 'fs')
| -rw-r--r-- | fs/jffs2/jffs2_1pass.c | 10 | ||||
| -rw-r--r-- | fs/jffs2/jffs2_nand_1pass.c | 10 | 
2 files changed, 12 insertions, 8 deletions
| 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); |