From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:51679) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Rvp3t-000088-FZ for qemu-devel@nongnu.org; Fri, 10 Feb 2012 06:54:50 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Rvp3s-0002yp-Ld for qemu-devel@nongnu.org; Fri, 10 Feb 2012 06:54:45 -0500 Received: from gw.ac.upc.edu ([147.83.30.3]:60311) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Rvp3s-0002yl-G6 for qemu-devel@nongnu.org; Fri, 10 Feb 2012 06:54:44 -0500 From: =?utf-8?b?TGx1w61z?= Vilanova Date: Fri, 10 Feb 2012 12:54:35 +0100 Message-ID: <20120210115435.9787.78561.stgit@ginnungagap.bsc.es> In-Reply-To: <20120210115429.9787.92858.stgit@ginnungagap.bsc.es> References: <20120210115429.9787.92858.stgit@ginnungagap.bsc.es> MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Subject: [Qemu-devel] [PATCH v4 01/11] [trivial] Fix a compiler warning List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: stefanha@gmail.com, harsh@linux.vnet.ibm.com Signed-off-by: Llu=C3=ADs 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 =3D 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));