From: Luiz Capitulino Date: Fri, 27 Jul 2012 13:55:29 +0000 (-0300) Subject: hmp: hmp.h: include qdict.h X-Git-Tag: qemu-xen-4.3.0-rc1~745^2~30 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=ff2f990b8212c8822d6a2f66ab4baeb48dae86bd;p=qemu-upstream-4.5-testing.git hmp: hmp.h: include qdict.h hmp.h is relying on qdict.h being provided by qapi-types.h. Fix this, as a future commit will change qapi-types.h not to provide qdict.h. Signed-off-by: Luiz Capitulino Reviewed-by: Markus Armbruster --- diff --git a/hmp.h b/hmp.h index 8d2b0d76d..3275522bd 100644 --- a/hmp.h +++ b/hmp.h @@ -16,6 +16,7 @@ #include "qemu-common.h" #include "qapi-types.h" +#include "qdict.h" void hmp_info_name(Monitor *mon); void hmp_info_version(Monitor *mon);