diff options
author | Michael S. Tsirkin <mst@redhat.com> | 2018-05-03 22:50:20 +0300 |
---|---|---|
committer | Michael S. Tsirkin <mst@redhat.com> | 2018-05-31 04:16:06 +0300 |
commit | 0d8c41dae5b0566d0022be2af84d50ff456b3537 (patch) | |
tree | 155f43a426f2d7bf37a18403e544bace051bddc8 /block/vhdx.c | |
parent | fa0d421f39b353ed2de901bb798f81ce9824c2f3 (diff) | |
download | qemu-0d8c41dae5b0566d0022be2af84d50ff456b3537.zip |
block: use local path for local headers
When pulling in headers that are in the same directory as the C file (as
opposed to one in include/), we should use its relative path, without a
directory.
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Tested-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Diffstat (limited to 'block/vhdx.c')
-rw-r--r-- | block/vhdx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/block/vhdx.c b/block/vhdx.c index 0b1e21c750..79c68a2061 100644 --- a/block/vhdx.c +++ b/block/vhdx.c @@ -23,7 +23,7 @@ #include "qemu/option.h" #include "qemu/crc32c.h" #include "qemu/bswap.h" -#include "block/vhdx.h" +#include "vhdx.h" #include "migration/blocker.h" #include "qemu/uuid.h" #include "qapi/qmp/qdict.h" |