]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
tools: imx image: fix write warning
authorPeng Fan <peng.fan@nxp.com>
Fri, 19 Mar 2021 07:56:53 +0000 (15:56 +0800)
committerStefano Babic <sbabic@denx.de>
Thu, 8 Apr 2021 07:18:29 +0000 (09:18 +0200)
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>
tools/imx8image.c
tools/imx8mimage.c

index 133780f5eaa51c7d75ce9b75b74178965f5eeb0d..fa8f2274876d24d48e72aed53dd6bfde0fcf3682 100644 (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;
 
index 9985b95a98ab1ba502d0525efa1a22910c08e45f..11e40ccd94e71a417b28cd79adfbeb30e1aad065 100644 (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;