From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:35498) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SwjoV-00046i-D4 for qemu-devel@nongnu.org; Wed, 01 Aug 2012 21:02:57 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SwjoU-0003L0-Cn for qemu-devel@nongnu.org; Wed, 01 Aug 2012 21:02:55 -0400 Received: from mx1.redhat.com ([209.132.183.28]:22561) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SwjoU-0003Ko-4l for qemu-devel@nongnu.org; Wed, 01 Aug 2012 21:02:54 -0400 From: Luiz Capitulino Date: Wed, 1 Aug 2012 22:02:40 -0300 Message-Id: <1343869374-23417-21-git-send-email-lcapitulino@redhat.com> In-Reply-To: <1343869374-23417-1-git-send-email-lcapitulino@redhat.com> References: <1343869374-23417-1-git-send-email-lcapitulino@redhat.com> Subject: [Qemu-devel] [PATCH 20/34] hmp: hmp.h: include qdict.h List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: kwolf@redhat.com, aliguori@us.ibm.com, armbru@redhat.com, mdroth@linux.vnet.ibm.com, pbonzini@redhat.com, eblake@redhat.com 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 --- hmp.h | 1 + 1 file changed, 1 insertion(+) diff --git a/hmp.h b/hmp.h index 8d2b0d7..3275522 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); -- 1.7.11.2.249.g31c7954.dirty