[PATCH 2/2] mtd-utils: serve_image: Use PRIdoff_t as format specifier.
torfl at t-online.de
torfl at t-online.de
Sat Feb 11 08:43:32 PST 2017
From: Torsten Fleischer <torfl at t-online.de>
To be independent on the size of off_t the format specifier determined of
common.h should be used instead of PRIu64.
Signed-off-by: Torsten Fleischer <torfl6749 at gmail.com>
---
misc-utils/serve_image.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/misc-utils/serve_image.c b/misc-utils/serve_image.c
index cbcf3b7..26632e3 100644
--- a/misc-utils/serve_image.c
+++ b/misc-utils/serve_image.c
@@ -18,6 +18,8 @@
#include <crc32.h>
#include <inttypes.h>
+#include <common.h>
+
#include "mcast_image.h"
int tx_rate = 80000;
@@ -126,7 +128,7 @@ int main(int argc, char **argv)
}
if (st.st_size % erasesize) {
- fprintf(stderr, "Image size %" PRIu64 " bytes is not a multiple of erasesize %d bytes\n",
+ fprintf(stderr, "Image size %" PRIdoff_t " bytes is not a multiple of erasesize %d bytes\n",
st.st_size, erasesize);
exit(1);
}
--
2.1.4
More information about the linux-mtd
mailing list