tools: imx image: fix write warning

Fix the warning by set the variable zero to uint64_t
"warning: ‘write’ reading 5 bytes from a region of size 4"

Signed-off-by: Peng Fan <peng.fan@nxp.com>
This commit is contained in:
Peng Fan 2021-03-19 15:56:53 +08:00 committed by Stefano Babic
parent e9c99db778
commit 16841a6a50
2 changed files with 2 additions and 2 deletions

View File

@ -365,7 +365,7 @@ static void copy_file (int ifd, const char *datafile, int pad, int offset)
struct stat sbuf;
unsigned char *ptr;
int tail;
int zero = 0;
uint64_t zero = 0;
uint8_t zeros[4096];
int size, ret;

View File

@ -248,7 +248,7 @@ static void copy_file(int ifd, const char *datafile, int pad, int offset,
struct stat sbuf;
unsigned char *ptr;
int tail;
int zero = 0;
uint64_t zero = 0;
uint8_t zeros[4096];
int size, ret;