diff options
author | 2018-05-03 22:50:51 +0300 | |
---|---|---|
committer | 2018-06-01 19:20:38 +0300 | |
commit | 53d37d36caa046d7d93f365e56dcf664f47ccf31 (patch) | |
tree | 5049f190b452af5a7b4bfb581f6fd00cb417b433 /migration/page_cache.c | |
parent | usb: use local path for local headers (diff) | |
download | qemu-53d37d36caa046d7d93f365e56dcf664f47ccf31.tar.xz qemu-53d37d36caa046d7d93f365e56dcf664f47ccf31.zip |
migration: 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: Juan Quintela <quintela@redhat.com>
Diffstat (limited to 'migration/page_cache.c')
-rw-r--r-- | migration/page_cache.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/migration/page_cache.c b/migration/page_cache.c index 96268c3aea..acc252b100 100644 --- a/migration/page_cache.c +++ b/migration/page_cache.c @@ -18,7 +18,7 @@ #include "qapi/error.h" #include "qemu-common.h" #include "qemu/host-utils.h" -#include "migration/page_cache.h" +#include "page_cache.h" #ifdef DEBUG_CACHE #define DPRINTF(fmt, ...) \ |