From 45006fa408cd24e62dcd94fa023edb04ca7b4627 Mon Sep 17 00:00:00 2001 From: Roman Bolshakov Date: Wed, 7 Oct 2020 15:20:34 +0300 Subject: [PATCH] wireshark: Fix missing bool_t on macOS The header has to be explicitly added to pull definition of bool_t and a few other types. Otherwise packet-libvirt.c can't be compiled. Signed-off-by: Roman Bolshakov Reviewed-by: Andrea Bolognani --- tools/wireshark/src/packet-libvirt.c | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/wireshark/src/packet-libvirt.c b/tools/wireshark/src/packet-libvirt.c index 965f1f5482..f43919b05d 100644 --- a/tools/wireshark/src/packet-libvirt.c +++ b/tools/wireshark/src/packet-libvirt.c @@ -21,6 +21,7 @@ #include #include #include +#include #include #include "packet-libvirt.h" #include "internal.h"