diff options
author | Philippe Mathieu-Daudé | 2021-05-16 22:50:34 +0200 |
---|---|---|
committer | Laurent Vivier | 2021-06-05 21:10:42 +0200 |
commit | 585190902a3baae3a1609c30a9e485ec072dd72f (patch) | |
tree | e792f93d6189a220080ec7f738bade3a6e7c22ec /include/monitor | |
parent | i386/kvm: The value passed to strerror should be positive (diff) | |
download | qemu-585190902a3baae3a1609c30a9e485ec072dd72f.tar.gz qemu-585190902a3baae3a1609c30a9e485ec072dd72f.tar.xz qemu-585190902a3baae3a1609c30a9e485ec072dd72f.zip |
misc: Correct relative include path
Headers should be included from the 'include/' directory,
not from the root directory.
Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
Message-Id: <20210516205034.694788-1-f4bug@amsat.org>
Signed-off-by: Laurent Vivier <laurent@vivier.eu>
Diffstat (limited to 'include/monitor')
-rw-r--r-- | include/monitor/monitor.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/monitor/monitor.h b/include/monitor/monitor.h index af3887bb71..1211d6e6d6 100644 --- a/include/monitor/monitor.h +++ b/include/monitor/monitor.h @@ -4,7 +4,7 @@ #include "block/block.h" #include "qapi/qapi-types-misc.h" #include "qemu/readline.h" -#include "include/exec/hwaddr.h" +#include "exec/hwaddr.h" typedef struct MonitorHMP MonitorHMP; typedef struct MonitorOptions MonitorOptions; |