tools: mkimage: fix sizeof_mismatch found by coverity

Reported-by: Coverity (CID: 155214)
Signed-off-by: Sven Ebenfeld <sven.ebenfeld@gmail.com>
This commit is contained in:
Sven Ebenfeld 2017-01-17 19:36:51 +01:00 committed by Tom Rini
parent fc4dd72eb6
commit b4e923a805
1 changed files with 1 additions and 1 deletions

View File

@ -526,7 +526,7 @@ int main(int argc, char **argv)
+ 0x20, 0 };
int i = params.file_size;
for (; i < aligned_filesize; i++) {
if (write(ifd, &i, 1) != 1) {
if (write(ifd, (char *) &i, 1) != 1) {
fprintf(stderr,
"%s: Write error on %s: %s\n",
params.cmdname,