[U-Boot] [PATCH] tools: fix imximage warning: passing argument 2 of ‘getline’ from incompatible pointer type

Kim Phillips kim.phillips at freescale.com
Tue Feb 23 02:37:56 CET 2010


Configuring for MPC837XEMDS board...
imximage.c: In function ‘imximage_parse_cfg_file’:
imximage.c:146: warning: passing argument 2 of ‘getline’ from incompatible pointer type
/usr/include/bits/stdio.h:116: note: expected ‘size_t *’ but argument is of type ‘uint32_t *’

Signed-off-by: Kim Phillips <kim.phillips at freescale.com>
---
 tools/imximage.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/tools/imximage.c b/tools/imximage.c
index 43da678..df2d8c4 100644
--- a/tools/imximage.c
+++ b/tools/imximage.c
@@ -129,7 +129,7 @@ static uint32_t imximage_parse_cfg_file(struct imx_header *imxhdr, char *name)
 	char *token, *saveptr1, *saveptr2;
 	int lineno = 0;
 	int fld, value;
-	uint32_t len;
+	size_t len;
 	int dcd_len = 0;
 	dcd_t *dcd = &imxhdr->dcd_table;
 	int32_t cmd;
-- 
1.7.0



More information about the U-Boot mailing list