diff mbox series

[3/4] Clean up wrong usage of FALSE and TRUE in places that use bool from stdbool.h

Message ID 1553256353-29753-3-git-send-email-cafer.abdi@gmail.com (mailing list archive)
State New, archived
Headers show
Series [1/4] Clean up wrong usage of FALSE and TRUE in places that use bool from stdbool.h | expand

Commit Message

Jafar Abdi March 22, 2019, 12:05 p.m. UTC
Signed-off-by: JafarAbdi <cafer.abdi@gmail.com>
---
 tests/libqos/pci-pc.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/tests/libqos/pci-pc.c b/tests/libqos/pci-pc.c
index 4ab16fa..407d8af 100644
--- a/tests/libqos/pci-pc.c
+++ b/tests/libqos/pci-pc.c
@@ -125,7 +125,7 @@  void qpci_init_pc(QPCIBusPC *qpci, QTestState *qts, QGuestAllocator *alloc)
     assert(qts);
 
     /* tests can use pci-bus */
-    qpci->bus.has_buggy_msi = FALSE;
+    qpci->bus.has_buggy_msi = false;
 
     qpci->bus.pio_readb = qpci_pc_pio_readb;
     qpci->bus.pio_readw = qpci_pc_pio_readw;