diff options
author | Andy Shevchenko <ext-andriy.shevchenko@nokia.com> | 2011-04-20 12:35:10 +0300 |
---|---|---|
committer | Artem Bityutskiy <Artem.Bityutskiy@nokia.com> | 2011-04-21 15:44:21 +0300 |
commit | 9f4e68401ab692a42825233342f7851edec7b8e7 (patch) | |
tree | c402f34863a018a98362028e44a4cca0fad08109 | |
parent | 897125577fe136a7a1dead23b61f9ae861a93356 (diff) |
serve_image: adjust classifier and type for printf
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>
-rw-r--r-- | serve_image.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/serve_image.c b/serve_image.c index f8f28a1..d1037a9 100644 --- a/serve_image.c +++ b/serve_image.c @@ -2,7 +2,6 @@ #define _POSIX_C_SOURCE 199309 #include <time.h> - #include <errno.h> #include <error.h> #include <netdb.h> @@ -18,6 +17,8 @@ #include <netinet/in.h> #include <sys/time.h> #include <crc32.h> +#include <inttypes.h> + #include "mcast_image.h" int tx_rate = 80000; @@ -126,8 +127,8 @@ int main(int argc, char **argv) } 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); |