Skip to content
Snippets Groups Projects
Commit 0ad22703 authored by Kim Phillips's avatar Kim Phillips Committed by Wolfgang Denk
Browse files

tools: fix imximage warning


Fix build warning:

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: default avatarKim Phillips <kim.phillips@freescale.com>
parent 5b28e913
No related branches found
No related tags found
No related merge requests found
...@@ -129,7 +129,7 @@ static uint32_t imximage_parse_cfg_file(struct imx_header *imxhdr, char *name) ...@@ -129,7 +129,7 @@ static uint32_t imximage_parse_cfg_file(struct imx_header *imxhdr, char *name)
char *token, *saveptr1, *saveptr2; char *token, *saveptr1, *saveptr2;
int lineno = 0; int lineno = 0;
int fld, value; int fld, value;
uint32_t len; size_t len;
int dcd_len = 0; int dcd_len = 0;
dcd_t *dcd = &imxhdr->dcd_table; dcd_t *dcd = &imxhdr->dcd_table;
int32_t cmd; int32_t cmd;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment