From patchwork Fri Mar 16 12:29:30 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Lee Essen X-Patchwork-Id: 147197 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id DA0F0B6F6E for ; Fri, 16 Mar 2012 23:30:13 +1100 (EST) Received: from localhost ([::1]:55146 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1S8WIN-0002fw-P9 for incoming@patchwork.ozlabs.org; Fri, 16 Mar 2012 08:30:11 -0400 Received: from eggs.gnu.org ([208.118.235.92]:35143) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1S8WIA-0002Z0-DU for qemu-devel@nongnu.org; Fri, 16 Mar 2012 08:30:06 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1S8WHm-0004A0-0D for qemu-devel@nongnu.org; Fri, 16 Mar 2012 08:29:57 -0400 Received: from 204.146.238.178.in-addr.arpa ([178.238.146.204]:60547 helo=mail.local) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1S8WHl-00049s-P4 for qemu-devel@nongnu.org; Fri, 16 Mar 2012 08:29:33 -0400 Received: from 187.146.238.178.in-addr.arpa (187.146.238.178.in-addr.arpa [178.238.146.187]) by mail.local (Postfix) with ESMTPSA id 4B1564D94; Fri, 16 Mar 2012 12:29:32 +0000 (UTC) From: Lee Essen Date: Fri, 16 Mar 2012 12:29:30 +0000 Message-Id: <541C8B7E-1E25-479E-B69E-A4B58BFA45F3@nowonline.co.uk> To: qemu-devel@nongnu.org Mime-Version: 1.0 (Apple Message framework v1251.1) X-Mailer: Apple Mail (2.1251.1) X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 178.238.146.204 Cc: =?iso-8859-1?Q?Andreas_F=E4rber?= Subject: [Qemu-devel] [PATCH] fix incorrect bracket in tracetool 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: Lee Essen --- scripts/tracetool | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/scripts/tracetool b/scripts/tracetool index 65bd0a1..2e43d05 100755 --- a/scripts/tracetool +++ b/scripts/tracetool @@ -123,7 +123,7 @@ get_argc() # Get the format string including double quotes for a trace event get_fmt() { - puts "${1#*)}" + puts "${1#*}" } linetoh_begin_nop()