mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-28 15:41:40 +00:00
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
2 changed files with 2 additions and 2 deletions
|
@ -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 a new issue