From patchwork Fri Feb 24 21:22:03 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Alon Levy X-Patchwork-Id: 142976 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [140.186.70.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 495F0B6F9F for ; Sat, 25 Feb 2012 08:22:45 +1100 (EST) Received: from localhost ([::1]:34257 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1S12bA-0005bO-ER for incoming@patchwork.ozlabs.org; Fri, 24 Feb 2012 16:22:40 -0500 Received: from eggs.gnu.org ([208.118.235.92]:50713) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1S12ak-0004RP-9n for qemu-devel@nongnu.org; Fri, 24 Feb 2012 16:22:15 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1S12ai-0005hw-K3 for qemu-devel@nongnu.org; Fri, 24 Feb 2012 16:22:13 -0500 Received: from mx1.redhat.com ([209.132.183.28]:17085) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1S12ai-0005hq-CJ for qemu-devel@nongnu.org; Fri, 24 Feb 2012 16:22:12 -0500 Received: from int-mx10.intmail.prod.int.phx2.redhat.com (int-mx10.intmail.prod.int.phx2.redhat.com [10.5.11.23]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id q1OLMBGD023211 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Fri, 24 Feb 2012 16:22:11 -0500 Received: from garlic.redhat.com (vpn-200-49.tlv.redhat.com [10.35.200.49]) by int-mx10.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id q1OLM6m7029513; Fri, 24 Feb 2012 16:22:09 -0500 From: Alon Levy To: qemu-devel@nongnu.org, lcapitulino@redhat.com, kraxel@redhat.com, armbru@redhat.com Date: Fri, 24 Feb 2012 23:22:03 +0200 Message-Id: <1330118525-14522-2-git-send-email-alevy@redhat.com> In-Reply-To: <1330118525-14522-1-git-send-email-alevy@redhat.com> References: <1330118525-14522-1-git-send-email-alevy@redhat.com> X-Scanned-By: MIMEDefang 2.68 on 10.5.11.23 X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 209.132.183.28 Subject: [Qemu-devel] [PATCH 2/4] qjson.h: include compiler.h for GCC_FMT_ATTR X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Signed-off-by: Alon Levy Acked-by: Luiz Capitulino --- qjson.h | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/qjson.h b/qjson.h index 65b10ea..1190d8a 100644 --- a/qjson.h +++ b/qjson.h @@ -15,6 +15,7 @@ #define QJSON_H #include +#include "compiler.h" #include "qobject.h" #include "qstring.h"