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: Simon Glass <sjg@chromium.org>
This commit is contained in:
Simon Glass 2011-11-19 08:20:54 +00:00 committed by Wolfgang Denk
parent e6e556c16b
commit 94e9d4c3e8
1 changed files with 3 additions and 3 deletions

View File

@ -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,
uint32_t *parms, struct image_type_params *tparams,
uint32_t *ptr, uint32_t size)
uint32_t *ptr)
{
int i;
@ -285,7 +285,7 @@ static int aisimage_generate(struct mkimage_params *params,
uint32_t nargs, cmd_parms[10];
uint32_t value, size;
char *name = params->imagename;
uint32_t *aishdr, tsize;
uint32_t *aishdr;
fd = fopen(name, "r");
if (fd == 0) {
@ -363,7 +363,7 @@ static int aisimage_generate(struct mkimage_params *params,
if (cmd != CMD_INVALID) {
/* Now insert the command into the header */
aishdr = ais_insert_cmd_header(cmd, nargs, cmd_parms,
tparams, aishdr, tsize);
tparams, aishdr);
}
}