From 0131c8c2ddeb115c423b8e505789025864d81f87 Mon Sep 17 00:00:00 2001 From: Avi Kivity Date: Sun, 29 Aug 2010 12:43:15 +0300 Subject: Fix ivshmem build on 32-bit hosts stat() fields can be more or less anything depending on configuration, cast explicitly to uint64_t to avoid printf() format mismatches. Signed-off-by: Avi Kivity Signed-off-by: Blue Swirl (cherry picked from commit ad0a4ac1c0e1859eb0c67900dba696cc459b42a7) --- hw/ivshmem.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/hw/ivshmem.c b/hw/ivshmem.c index afebbc3657..06dce70e78 100644 --- a/hw/ivshmem.c +++ b/hw/ivshmem.c @@ -351,9 +351,10 @@ static int check_shm_size(IVShmemState *s, int fd) { fstat(fd, &buf); if (s->ivshmem_size > buf.st_size) { - fprintf(stderr, "IVSHMEM ERROR: Requested memory size greater"); - fprintf(stderr, " than shared object size (%" PRIu64 " > %ld)\n", - s->ivshmem_size, buf.st_size); + fprintf(stderr, + "IVSHMEM ERROR: Requested memory size greater" + " than shared object size (%" PRIu64 " > %" PRIu64")\n", + s->ivshmem_size, (uint64_t)buf.st_size); return -1; } else { return 0; -- cgit v1.2.1