Skip to content

Commit 94db8de

Browse files
committed
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 <target_flat.h> ^ because the relevant directory is only on the -iquote path, not the -I path. Signed-off-by: Peter Maydell <[email protected]> Reviewed-by: Richard Henderson <[email protected]> Reviewed-by: Philippe Mathieu-Daudé <[email protected]> Message-id: [email protected]
1 parent 2e79802 commit 94db8de

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

linux-user/flatload.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737

3838
#include "qemu.h"
3939
#include "flat.h"
40-
#include <target_flat.h>
40+
#include "target_flat.h"
4141

4242
//#define DEBUG
4343

0 commit comments

Comments
 (0)