Browse Source

libvhost-user: Fix two more format strings

This fix is required for 32 bit hosts. The bug was detected by CI
for arm-linux, but is also relevant for i386-linux.

Reported-by: Stefan Hajnoczi <stefanha@gmail.com>
Signed-off-by: Stefan Weil <sw@weilnetz.de>
Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
Message-Id: <20221126152507.283271-4-sw@weilnetz.de>
Stefan Weil via 2 years ago
parent
commit
7d4774e681
1 changed files with 2 additions and 1 deletions
  1. 2 1
      subprojects/libvhost-user/libvhost-user.c

+ 2 - 1
subprojects/libvhost-user/libvhost-user.c

@@ -651,7 +651,8 @@ generate_faults(VuDev *dev) {
 
 
         if (ioctl(dev->postcopy_ufd, UFFDIO_REGISTER, &reg_struct)) {
         if (ioctl(dev->postcopy_ufd, UFFDIO_REGISTER, &reg_struct)) {
             vu_panic(dev, "%s: Failed to userfault region %d "
             vu_panic(dev, "%s: Failed to userfault region %d "
-                          "@%" PRIx64 " + size:%zx offset: %zx: (ufd=%d)%s\n",
+                          "@%" PRIx64 " + size:%" PRIx64 " offset: %" PRIx64
+                          ": (ufd=%d)%s\n",
                      __func__, i,
                      __func__, i,
                      dev_region->mmap_addr,
                      dev_region->mmap_addr,
                      dev_region->size, dev_region->mmap_offset,
                      dev_region->size, dev_region->mmap_offset,