From patchwork Fri Sep 16 16:59:44 2011 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: 115004 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 E6CD7B71AB for ; Sat, 17 Sep 2011 03:00:17 +1000 (EST) Received: from localhost ([::1]:34798 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1R4blu-000471-NF for incoming@patchwork.ozlabs.org; Fri, 16 Sep 2011 13:00:14 -0400 Received: from eggs.gnu.org ([140.186.70.92]:37051) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1R4blX-000328-7F for qemu-devel@nongnu.org; Fri, 16 Sep 2011 12:59:52 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1R4blW-0007G5-3O for qemu-devel@nongnu.org; Fri, 16 Sep 2011 12:59:51 -0400 Received: from gw.ac.upc.edu ([147.83.30.3]:59321) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1R4blV-0007FR-Sw for qemu-devel@nongnu.org; Fri, 16 Sep 2011 12:59:50 -0400 Received: from localhost (unknown [84.88.53.92]) by gw.ac.upc.edu (Postfix) with ESMTP id 8E7586B01CD for ; Fri, 16 Sep 2011 18:59:48 +0200 (CEST) To: qemu-devel@nongnu.org From: =?utf-8?b?TGx1w61z?= Vilanova Date: Fri, 16 Sep 2011 18:59:44 +0200 Message-ID: <20110916165944.16620.40168.stgit@ginnungagap.bsc.es> In-Reply-To: <20110916165933.16620.4383.stgit@ginnungagap.bsc.es> References: <20110916165933.16620.4383.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 Subject: [Qemu-devel] [PATCH 3/3] trace: [ust] Do not use zero-length format strings (avoid 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 --- trace-events | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/trace-events b/trace-events index b653d70..7b2e619 100644 --- a/trace-events +++ b/trace-events @@ -480,7 +480,7 @@ qemu_coroutine_yield(void *from, void *to) "from %p to %p" qemu_coroutine_terminate(void *co) "self %p" # qemu-coroutine-lock.c -qemu_co_queue_next_bh(void) "" +qemu_co_queue_next_bh(void) " " qemu_co_queue_next(void *next) "next %p" qemu_co_mutex_lock_entry(void *mutex, void *self) "mutex %p self %p" qemu_co_mutex_lock_return(void *mutex, void *self) "mutex %p self %p"