diff mbox series

[nft,v4,02/32] include: add missing `#include`

Message ID 20220404121410.188509-3-jeremy@azazel.net
State Accepted, archived
Delegated to: Pablo Neira
Headers show
Series Extend values assignable to packet marks and payload fields | expand

Commit Message

Jeremy Sowden April 4, 2022, 12:13 p.m. UTC
datatype.h uses bool and so should include <stdbool.h>.

Signed-off-by: Jeremy Sowden <jeremy@azazel.net>
---
 include/datatype.h | 1 +
 1 file changed, 1 insertion(+)
diff mbox series

Patch

diff --git a/include/datatype.h b/include/datatype.h
index f5bb9dc4d937..0b90a33e4e64 100644
--- a/include/datatype.h
+++ b/include/datatype.h
@@ -1,6 +1,7 @@ 
 #ifndef NFTABLES_DATATYPE_H
 #define NFTABLES_DATATYPE_H
 
+#include <stdbool.h>
 #include <json.h>
 
 /**