summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorMichael S. Tsirkin2018-05-03 21:50:27 +0200
committerMichael S. Tsirkin2018-06-01 18:20:37 +0200
commit83ee768d6247bf121b5b8f4b7580fbbc1281d473 (patch)
tree8d325530569db1e3ae37651b38e5c2706e2e81df /include
parenthppa: use local path for local headers (diff)
downloadqemu-83ee768d6247bf121b5b8f4b7580fbbc1281d473.tar.gz
qemu-83ee768d6247bf121b5b8f4b7580fbbc1281d473.tar.xz
qemu-83ee768d6247bf121b5b8f4b7580fbbc1281d473.zip
migration: drop an unused include
In the vmstate.h file, we just need a struct name. Use a forward declaration instead of an include, then adjust the one affected .c file to include the file that is no longer implicit from the header. Signed-off-by: Michael S. Tsirkin <mst@redhat.com> Reviewed-by: Eric Blake <eblake@redhat.com>
Diffstat (limited to 'include')
-rw-r--r--include/migration/vmstate.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/migration/vmstate.h b/include/migration/vmstate.h
index df463fd33d..5877caed90 100644
--- a/include/migration/vmstate.h
+++ b/include/migration/vmstate.h
@@ -27,7 +27,7 @@
#ifndef QEMU_VMSTATE_H
#define QEMU_VMSTATE_H
-#include "migration/qjson.h"
+typedef struct QJSON QJSON;
typedef struct VMStateInfo VMStateInfo;
typedef struct VMStateDescription VMStateDescription;