summaryrefslogtreecommitdiffstats
path: root/flashrom.c
diff options
context:
space:
mode:
Diffstat (limited to 'flashrom.c')
-rw-r--r--flashrom.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/flashrom.c b/flashrom.c
index d89860a..e1be398 100644
--- a/flashrom.c
+++ b/flashrom.c
@@ -1121,8 +1121,8 @@ int read_buf_from_file(unsigned char *buf, unsigned long size,
return 1;
}
if (image_stat.st_size != size) {
- msg_gerr("Error: Image size (%ld B) doesn't match the flash chip's size (%ld B)!\n",
- image_stat.st_size, size);
+ msg_gerr("Error: Image size (%jd B) doesn't match the flash chip's size (%ld B)!\n",
+ (intmax_t)image_stat.st_size, size);
fclose(image);
return 1;
}
OpenPOWER on IntegriCloud