]> git.proxmox.com Git - mirror_qemu.git/commit
libvhost-user: Use unsigned int i for some for-loop iterations
authorMarcel Holtmann <marcel@holtmann.org>
Thu, 22 Dec 2022 20:36:43 +0000 (21:36 +0100)
committerPaolo Bonzini <pbonzini@redhat.com>
Wed, 11 Jan 2023 09:44:34 +0000 (10:44 +0100)
commit92bf246130faa85b20ca8e3b6c4eda50d5825a5a
tree6b1c8d5450348916992b074e5bc18597f0be0d6a
parent18fa7f1e95e22f74f509e1b5cf759f7a19a0954d
libvhost-user: Use unsigned int i for some for-loop iterations

The sign-compare warning also hits some of the for-loops, but it easy
fixed by just making the iterator variable unsigned int.

  CC       libvhost-user.o
libvhost-user.c: In function ‘vu_gpa_to_va’:
libvhost-user.c:223:19: error: comparison of integer expressions of different signedness: ‘int’ and ‘uint32_t’ {aka ‘unsigned int’} [-Werror=sign-compare]
  223 |     for (i = 0; i < dev->nregions; i++) {
      |                   ^

Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Message-Id: <decb925e1a6fb9538738d2570bda2804f888fa15.1671741278.git.marcel@holtmann.org>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
subprojects/libvhost-user/libvhost-user.c