diff mbox

[kvmtool] irq.h: fix compilation error due to missing bool type

Message ID 20171103161021.6511-1-andre.przywara@arm.com (mailing list archive)
State New, archived
Headers show

Commit Message

Andre Przywara Nov. 3, 2017, 4:10 p.m. UTC
Commit f6108d72e977 ("Add GICv2m support") introduced a bool return
type, but missed to include the respective header (this was probably
part of a former prerequisite series).
Fix this by including the header.

Fixes: f6108d72e977cce00e7bc824acd1d73da8cc9729 ("Add GICv2m support")
Signed-off-by: Andre Przywara <andre.przywara@arm.com>
---
 include/kvm/irq.h | 1 +
 1 file changed, 1 insertion(+)
diff mbox

Patch

diff --git a/include/kvm/irq.h b/include/kvm/irq.h
index 429542d8..8ba8b740 100644
--- a/include/kvm/irq.h
+++ b/include/kvm/irq.h
@@ -1,6 +1,7 @@ 
 #ifndef KVM__IRQ_H
 #define KVM__IRQ_H
 
+#include <stdbool.h>
 #include <linux/types.h>
 #include <linux/rbtree.h>
 #include <linux/list.h>