From: Roman Bolshakov Date: Wed, 7 Oct 2020 12:20:34 +0000 (+0300) Subject: wireshark: Fix missing bool_t on macOS X-Git-Tag: v6.9.0-rc1~280 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=45006fa408cd24e62dcd94fa023edb04ca7b4627;p=thirdparty%2Flibvirt.git 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 --- 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"