Fix include statement for u2f-emu.h
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 <sw@weilnetz.de> Reviewed-by: Michael Tokarev <mjt@tls.msk.ru> Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
Stefan Weil committed
Mar 18, 2026 at 18:45 UTC
4ef8aca3d186126153d2f90cc007b656063060ab
1 file changed
+1
-1
hw/usb/u2f-emulated.c
+1
-1
@@ -31,7 +31,7 @@
31
#include "hw/usb/usb.h"
32
#include "hw/core/qdev-properties.h"
33
34
-#include <u2f-emu/u2f-emu.h>
34
+#include <u2f-emu.h>
35
36
#include "u2f.h"
37