diff options
Diffstat (limited to 'misc-utils')
-rw-r--r-- | misc-utils/serve_image.c | 4 |
1 files changed, 3 insertions, 1 deletions
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); } |