]> git.proxmox.com Git - qemu.git/blobdiff - async.c
qapi schema: add Netdev types
[qemu.git] / async.c
diff --git a/async.c b/async.c
index ecdaf15887c6afcbfd4883b09f583505d802f3a6..85cc6410c50259398beef693ec00b649823dcde3 100644 (file)
--- a/async.c
+++ b/async.c
@@ -35,10 +35,10 @@ static struct QEMUBH *first_bh;
 struct QEMUBH {
     QEMUBHFunc *cb;
     void *opaque;
-    int scheduled;
-    int idle;
-    int deleted;
     QEMUBH *next;
+    bool scheduled;
+    bool idle;
+    bool deleted;
 };
 
 QEMUBH *qemu_bh_new(QEMUBHFunc *cb, void *opaque)