From patchwork Fri Feb 3 21:10:48 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: =?utf-8?q?Llu=C3=ADs_Vilanova?= X-Patchwork-Id: 139455 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 81D081047A2 for ; Sat, 4 Feb 2012 08:11:09 +1100 (EST) Received: from localhost ([::1]:49931 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RtQPT-000260-LM for incoming@patchwork.ozlabs.org; Fri, 03 Feb 2012 16:11:07 -0500 Received: from eggs.gnu.org ([140.186.70.92]:54959) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RtQPN-000227-AQ for qemu-devel@nongnu.org; Fri, 03 Feb 2012 16:11:02 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RtQPM-0006vp-1X for qemu-devel@nongnu.org; Fri, 03 Feb 2012 16:11:01 -0500 Received: from gw.ac.upc.edu ([147.83.30.3]:55631) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RtQPL-0006vk-Jk for qemu-devel@nongnu.org; Fri, 03 Feb 2012 16:10:59 -0500 Received: from localhost (unknown [84.88.53.92]) by gw.ac.upc.edu (Postfix) with ESMTP id 7EB482D000E; Fri, 3 Feb 2012 22:10:58 +0100 (CET) To: qemu-devel@nongnu.org From: =?utf-8?b?TGx1w61z?= Vilanova Date: Fri, 03 Feb 2012 22:10:48 +0100 Message-ID: <20120203211048.30134.90728.stgit@ginnungagap.bsc.es> In-Reply-To: <20120203211030.30134.94075.stgit@ginnungagap.bsc.es> References: <20120203211030.30134.94075.stgit@ginnungagap.bsc.es> User-Agent: StGit/0.15 MIME-Version: 1.0 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 3) X-Received-From: 147.83.30.3 Cc: stefanha@gmail.com, harsh@linux.vnet.ibm.com Subject: [Qemu-devel] [PATCH v2 01/11] [trivial] Fix a compiler warning 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: LluĂ­s Vilanova --- scripts/tracetool.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/scripts/tracetool.py b/scripts/tracetool.py index 6874f66..f0d7e1e 100755 --- a/scripts/tracetool.py +++ b/scripts/tracetool.py @@ -183,7 +183,7 @@ def simple_c(events): argc = event.argc print '''void trace_%(name)s(%(args)s) { - unsigned int tbuf_idx, rec_off; + unsigned int tbuf_idx, rec_off __attribute__((unused)); uint64_t var64 __attribute__ ((unused)); uint64_t pvar64 __attribute__ ((unused)); uint32_t slen __attribute__ ((unused));