diff options
author | Michael S. Tsirkin <mst@redhat.com> | 2018-05-03 22:50:51 +0300 |
---|---|---|
committer | Michael S. Tsirkin <mst@redhat.com> | 2018-06-01 19:20:38 +0300 |
commit | 53d37d36caa046d7d93f365e56dcf664f47ccf31 (patch) | |
tree | 5049f190b452af5a7b4bfb581f6fd00cb417b433 /migration/page_cache.c | |
parent | 463581a827ea8fd540ddf1d4260a7610d17f1b2e (diff) |
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, ...) \ |