From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:38598) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1T10do-0001g7-8H for qemu-devel@nongnu.org; Mon, 13 Aug 2012 15:49:34 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1T10dm-0003w7-5g for qemu-devel@nongnu.org; Mon, 13 Aug 2012 15:49:32 -0400 Received: from mx1.redhat.com ([209.132.183.28]:28408) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1T10dl-0003vt-T5 for qemu-devel@nongnu.org; Mon, 13 Aug 2012 15:49:30 -0400 From: Luiz Capitulino Date: Mon, 13 Aug 2012 16:48:57 -0300 Message-Id: <1344887349-13041-37-git-send-email-lcapitulino@redhat.com> In-Reply-To: <1344887349-13041-1-git-send-email-lcapitulino@redhat.com> References: <1344887349-13041-1-git-send-email-lcapitulino@redhat.com> Subject: [Qemu-devel] [PATCH 36/48] scripts: qapi-commands.py: qmp-commands.h: include qdict.h List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: aliguori@us.ibm.com Cc: qemu-devel@nongnu.org qmp-commands.h declares several functions that have arguments of type QDict. However, qdict.h is not included. This will cause a build breakage when a file includes qmp-commands.h but doesn't include qdict.h. Signed-off-by: Luiz Capitulino --- scripts/qapi-commands.py | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/qapi-commands.py b/scripts/qapi-commands.py index 9eed40e..3c4678d 100644 --- a/scripts/qapi-commands.py +++ b/scripts/qapi-commands.py @@ -342,6 +342,7 @@ def gen_command_decl_prologue(header, guard, prefix=""): #define %(guard)s #include "%(prefix)sqapi-types.h" +#include "qdict.h" #include "error.h" ''', -- 1.7.11.2.249.g31c7954.dirty