From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from gateway22.websitewelcome.com (gateway22.websitewelcome.com [192.185.47.144]) by sourceware.org (Postfix) with ESMTPS id 33FB03857813 for ; Wed, 10 Feb 2021 00:41:38 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org 33FB03857813 Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=tromey.com Authentication-Results: sourceware.org; spf=fail smtp.mailfrom=tom@tromey.com Received: from cm10.websitewelcome.com (cm10.websitewelcome.com [100.42.49.4]) by gateway22.websitewelcome.com (Postfix) with ESMTP id 76F324A0B for ; Tue, 9 Feb 2021 18:41:37 -0600 (CST) Received: from box5379.bluehost.com ([162.241.216.53]) by cmsmtp with SMTP id 9dZZlXnU4uDoA9dZZlWqIV; Tue, 09 Feb 2021 18:41:37 -0600 X-Authority-Reason: nr=8 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=tromey.com; s=default; h=Content-Transfer-Encoding:MIME-Version:Message-Id:Date:Subject: Cc:To:From:Sender:Reply-To:Content-Type:Content-ID:Content-Description: Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID: In-Reply-To:References:List-Id:List-Help:List-Unsubscribe:List-Subscribe: List-Post:List-Owner:List-Archive; bh=xc+WLpeleCGIRGg6Gb8+XOW12IIS2iZ2p6K4CZm+gJM=; b=B61zKsCyOM1+7WBhrqYqF0gu8I xL8iCt8LbEv+XvO79pNQaAzdeNUe7Aw7IipgbpqpCFC2TZY3YAaUJYUQ1XGRJ60yfeaheK8ekoWsH +iKmQs6MJrvk6gyLoaHXPMrAz; Received: from 97-122-91-54.hlrn.qwest.net ([97.122.91.54]:50232 helo=localhost.localdomain) by box5379.bluehost.com with esmtpsa (TLS1.2) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.93) (envelope-from ) id 1l9dZZ-001fM2-6D; Tue, 09 Feb 2021 17:41:37 -0700 From: Tom Tromey To: gdb-patches@sourceware.org Cc: Tom Tromey Subject: [pushed] Fix typo in stap_parse_argument_conditionally Date: Tue, 9 Feb 2021 17:41:34 -0700 Message-Id: <20210210004134.2682579-1-tom@tromey.com> X-Mailer: git-send-email 2.26.2 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - box5379.bluehost.com X-AntiAbuse: Original Domain - sourceware.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - tromey.com X-BWhitelist: no X-Source-IP: 97.122.91.54 X-Source-L: No X-Exim-ID: 1l9dZZ-001fM2-6D X-Source: X-Source-Args: X-Source-Dir: X-Source-Sender: 97-122-91-54.hlrn.qwest.net (localhost.localdomain) [97.122.91.54]:50232 X-Source-Auth: tom+tromey.com X-Email-Count: 1 X-Source-Cap: ZWx5bnJvYmk7ZWx5bnJvYmk7Ym94NTM3OS5ibHVlaG9zdC5jb20= X-Local-Domain: yes X-Spam-Status: No, score=-3032.9 required=5.0 tests=BAYES_00, DKIM_SIGNED, DKIM_VALID, GIT_PATCH_0, JMQ_SPF_NEUTRAL, RCVD_IN_BL_SPAMCOP_NET, RCVD_IN_DNSWL_NONE, SPF_HELO_PASS, SPF_NEUTRAL, TXREP autolearn=ham autolearn_force=no version=3.4.2 X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on server2.sourceware.org X-BeenThere: gdb-patches@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gdb-patches mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Feb 2021 00:41:40 -0000 This fixes a typo in an error message in stap_parse_argument_conditionally. gdb/ChangeLog 2021-02-09 Tom Tromey * stap-probe.c (stap_parse_argument_conditionally): Fix typo. --- gdb/ChangeLog | 4 ++++ gdb/stap-probe.c | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/gdb/stap-probe.c b/gdb/stap-probe.c index 224dd5714fa..bbdfbcd0267 100644 --- a/gdb/stap-probe.c +++ b/gdb/stap-probe.c @@ -1031,7 +1031,7 @@ stap_parse_argument_conditionally (struct stap_parse_info *p) p->arg = skip_spaces (p->arg); if (*p->arg != ')') - error (_("Missign close-parenthesis on expression `%s'."), + error (_("Missing close-parenthesis on expression `%s'."), p->saved_arg); --p->inside_paren_p; -- 2.26.2