The argument type of printf is __off64_t, meanwhile the classifier is "%ld".
We agreed to use PRIu64 in such case.
Signed-off-by: Andy Shevchenko <ext-andriy.shevchenko@nokia.com>
Signed-off-by: Artem Bityutskiy <Artem.Bityutskiy@nokia.com>
#define _POSIX_C_SOURCE 199309
#include <time.h>
-
#include <errno.h>
#include <error.h>
#include <netdb.h>
#include <netinet/in.h>
#include <sys/time.h>
#include <crc32.h>
+#include <inttypes.h>
+
#include "mcast_image.h"
int tx_rate = 80000;
}
if (st.st_size % erasesize) {
- fprintf(stderr, "Image size %ld bytes is not a multiple of erasesize %d bytes\n",
- st.st_size, erasesize);
+ fprintf(stderr, "Image size %" PRIu64 " bytes is not a multiple of erasesize %d bytes\n"
+ st.st_size, erasesize);
exit(1);
}
image = mmap(NULL, st.st_size, PROT_READ, MAP_PRIVATE, rfd, 0);