From: Peter Maydell Date: Thu, 19 Mar 2020 19:33:21 +0000 (+0000) Subject: linux-user/flatload.c: Use "" for include of QEMU header target_flat.h X-Git-Tag: qemu-xen-4.14.0~17^2~8 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=94db8de179334a7ab261165f7aa82c3800b542c8;p=qemu-xen.git linux-user/flatload.c: Use "" for include of QEMU header target_flat.h The target_flat.h file is a QEMU header, so we should include it using quotes, not angle brackets. Coverity otherwise is unable to find the header: "../linux-user/flatload.c", line 40: error #1712: cannot open source file "target_flat.h" #include ^ because the relevant directory is only on the -iquote path, not the -I path. Signed-off-by: Peter Maydell Reviewed-by: Richard Henderson Reviewed-by: Philippe Mathieu-Daudé Message-id: 20200319193323.2038-5-peter.maydell@linaro.org --- diff --git a/linux-user/flatload.c b/linux-user/flatload.c index 0122ab3afe..66901f39cc 100644 --- a/linux-user/flatload.c +++ b/linux-user/flatload.c @@ -37,7 +37,7 @@ #include "qemu.h" #include "flat.h" -#include +#include "target_flat.h" //#define DEBUG