From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:39069) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SCtpW-0002AG-00 for qemu-devel@nongnu.org; Wed, 28 Mar 2012 10:26:36 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SCtpQ-0006EF-9O for qemu-devel@nongnu.org; Wed, 28 Mar 2012 10:26:29 -0400 Received: from mx1.redhat.com ([209.132.183.28]:34677) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SCtpQ-0006Ds-1Z for qemu-devel@nongnu.org; Wed, 28 Mar 2012 10:26:24 -0400 From: Alon Levy Date: Wed, 28 Mar 2012 16:26:16 +0200 Message-Id: <1332944776-4037-2-git-send-email-alevy@redhat.com> In-Reply-To: <1332944776-4037-1-git-send-email-alevy@redhat.com> References: <20120328131634.GY32389@garlic> <1332944776-4037-1-git-send-email-alevy@redhat.com> Subject: [Qemu-devel] [PATCH 2/2] tracetool: dtrace: warn on reserved word usage List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org, Stefan Hajnoczi Cc: =?UTF-8?q?Llu=C3=ADs=20Vilanova?= Signed-off-by: Alon Levy --- scripts/tracetool | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/tracetool b/scripts/tracetool index e7cebf3..d011bb7 100755 --- a/scripts/tracetool +++ b/scripts/tracetool @@ -496,6 +496,7 @@ EOF do # 'limit', 'in' and 'next' are reserved keywords if [ "$arg" = "limit" -o "$arg" = "in" -o "$arg" = "next" ]; then + echo "reserved word used in line: $1" 1>&2 arg="_$arg" fi cat <