diff options
author | Michael S. Tsirkin <mst@redhat.com> | 2018-05-03 22:50:56 +0300 |
---|---|---|
committer | Michael S. Tsirkin <mst@redhat.com> | 2018-06-01 19:20:38 +0300 |
commit | f27f01db0391990098620cd39473edf03e170183 (patch) | |
tree | 4ea3e86acb1ebc931de63931f0b55beb8b7c3f98 /net/colo.c | |
parent | 53d37d36caa046d7d93f365e56dcf664f47ccf31 (diff) | |
download | qemu-f27f01db0391990098620cd39473edf03e170183.zip qemu-f27f01db0391990098620cd39473edf03e170183.tar.gz qemu-f27f01db0391990098620cd39473edf03e170183.tar.bz2 |
colo: 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.
Reviewed-by: Zhang Chen <zhangckid@gmail.com>
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 'net/colo.c')
-rw-r--r-- | net/colo.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -14,7 +14,7 @@ #include "qemu/osdep.h" #include "trace.h" -#include "net/colo.h" +#include "colo.h" uint32_t connection_key_hash(const void *opaque) { |