diff options
author | Markus Armbruster <armbru@redhat.com> | 2018-02-01 12:18:33 +0100 |
---|---|---|
committer | Markus Armbruster <armbru@redhat.com> | 2018-02-09 13:52:10 +0100 |
commit | abb297ed4408e3859776a1a3c91d99225b9795b9 (patch) | |
tree | 91bdb09832b306bf3d33dc3ad27ebc35fbdbb29b /qga | |
parent | a82400cf5cc2f00d5bdbacb4b591be1adf8c25a8 (diff) |
Include qmp-commands.h exactly where needed
Reviewed-by: Eric Blake <eblake@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Message-Id: <20180201111846.21846-7-armbru@redhat.com>
[OSX breakage fixed]
Diffstat (limited to 'qga')
-rw-r--r-- | qga/guest-agent-core.h | 2 | ||||
-rw-r--r-- | qga/main.c | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/qga/guest-agent-core.h b/qga/guest-agent-core.h index 3e8a4acff2..6f4d214cb9 100644 --- a/qga/guest-agent-core.h +++ b/qga/guest-agent-core.h @@ -12,7 +12,7 @@ */ #include "qapi/qmp/dispatch.h" #include "qemu-common.h" -#include "qga-qmp-commands.h" +#include "qga-qapi-types.h" #define QGA_READ_COUNT_DEFAULT 4096 diff --git a/qga/main.c b/qga/main.c index 57083ca10c..804cc4c1a0 100644 --- a/qga/main.c +++ b/qga/main.c @@ -23,6 +23,7 @@ #include "qapi/qmp/qjson.h" #include "qga/guest-agent-core.h" #include "qemu/module.h" +#include "qga-qmp-commands.h" #include "qapi/qmp/qerror.h" #include "qapi/error.h" #include "qapi/qmp/dispatch.h" |