Skip to content
Snippets Groups Projects
Commit 94e9d4c3 authored by Simon Glass's avatar Simon Glass Committed by Wolfgang Denk
Browse files

Fix tsize warning in tools/aisimage.c


This fixes the following warning with gcc 4.4.3.

aisimage.c: In function 'aisimage_generate':
aisimage.c:365: warning: 'tsize' may be used uninitialized in this function

Signed-off-by: default avatarSimon Glass <sjg@chromium.org>
parent e6e556c1
No related branches found
No related tags found
No related merge requests found
...@@ -180,7 +180,7 @@ static void aisimage_print_header(const void *hdr) ...@@ -180,7 +180,7 @@ static void aisimage_print_header(const void *hdr)
static uint32_t *ais_insert_cmd_header(uint32_t cmd, uint32_t nargs, static uint32_t *ais_insert_cmd_header(uint32_t cmd, uint32_t nargs,
uint32_t *parms, struct image_type_params *tparams, uint32_t *parms, struct image_type_params *tparams,
uint32_t *ptr, uint32_t size) uint32_t *ptr)
{ {
int i; int i;
...@@ -285,7 +285,7 @@ static int aisimage_generate(struct mkimage_params *params, ...@@ -285,7 +285,7 @@ static int aisimage_generate(struct mkimage_params *params,
uint32_t nargs, cmd_parms[10]; uint32_t nargs, cmd_parms[10];
uint32_t value, size; uint32_t value, size;
char *name = params->imagename; char *name = params->imagename;
uint32_t *aishdr, tsize; uint32_t *aishdr;
fd = fopen(name, "r"); fd = fopen(name, "r");
if (fd == 0) { if (fd == 0) {
...@@ -363,7 +363,7 @@ static int aisimage_generate(struct mkimage_params *params, ...@@ -363,7 +363,7 @@ static int aisimage_generate(struct mkimage_params *params,
if (cmd != CMD_INVALID) { if (cmd != CMD_INVALID) {
/* Now insert the command into the header */ /* Now insert the command into the header */
aishdr = ais_insert_cmd_header(cmd, nargs, cmd_parms, aishdr = ais_insert_cmd_header(cmd, nargs, cmd_parms,
tparams, aishdr, tsize); tparams, aishdr);
} }
} }
......
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