[PULL 2/4] Fix include statement for u2f-emu.h
Michael Tokarev <[email protected]>
| Newsgroups | org.nongnu.qemu-trivial,org.nongnu.qemu-devel |
|---|---|
| Message-ID | <[email protected]> |
From: Stefan Weil via <[email protected]> All examples on https://github.com/Agnoctopus/libu2f-emu/ don't simply include u2f-emu.h without any added directory. The additional include directory does not exist when libu2f was built with meson. It's up to pkgconfig to make sure that u2f-emu.h is found in any case. Signed-off-by: Stefan Weil <[email protected]> Reviewed-by: Michael Tokarev <[email protected]> Signed-off-by: Michael Tokarev <[email protected]> --- hw/usb/u2f-emulated.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hw/usb/u2f-emulated.c b/hw/usb/u2f-emulated.c index 196d05a83a..b82a315019 100644 --- a/hw/usb/u2f-emulated.c +++ b/hw/usb/u2f-emulated.c @@ -31,7 +31,7 @@ #include "hw/usb/usb.h" #include "hw/core/qdev-properties.h" -#include <u2f-emu/u2f-emu.h> +#include <u2f-emu.h> #include "u2f.h" -- 2.47.3