]> git.proxmox.com Git - qemu.git/commitdiff
Fix Sparse warning
authorBlue Swirl <blauwirbel@gmail.com>
Sun, 5 Jul 2009 08:11:39 +0000 (08:11 +0000)
committerBlue Swirl <blauwirbel@gmail.com>
Sun, 5 Jul 2009 08:11:39 +0000 (08:11 +0000)
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
hw/msix.c

index 4ab6da680944322b07d0b64f1eab23e20f056d94..c03184276145266a9b75f3030271d7690c1fabb5 100644 (file)
--- a/hw/msix.c
+++ b/hw/msix.c
@@ -296,8 +296,9 @@ void msix_load(PCIDevice *dev, QEMUFile *f)
 {
     unsigned n = dev->msix_entries_nr;
 
-    if (!dev->cap_present & QEMU_PCI_CAP_MSIX)
+    if (!(dev->cap_present & QEMU_PCI_CAP_MSIX)) {
         return;
+    }
 
     qemu_get_buffer(f, dev->msix_table_page, n * MSIX_ENTRY_SIZE);
     qemu_get_buffer(f, dev->msix_table_page + MSIX_PAGE_PENDING, (n + 7) / 8);