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:
parent
e9c99db778
commit
16841a6a50
@ -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;
|
||||
|
||||
|
@ -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;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user