From patchwork Sat May 4 20:11:43 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Tom Tromey X-Patchwork-Id: 32552 Received: (qmail 94214 invoked by alias); 4 May 2019 20:11:54 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Delivered-To: mailing list gdb-patches@sourceware.org Received: (qmail 94138 invoked by uid 89); 4 May 2019 20:11:53 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-20.3 required=5.0 tests=AWL, BAYES_00, GIT_PATCH_0, GIT_PATCH_1, GIT_PATCH_2, GIT_PATCH_3, RCVD_IN_DNSWL_NONE, SPF_HELO_PASS autolearn=ham version=3.3.1 spammy=stackc, UD:stack.c, stack.c X-HELO: gateway20.websitewelcome.com Received: from gateway20.websitewelcome.com (HELO gateway20.websitewelcome.com) (192.185.62.46) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sat, 04 May 2019 20:11:51 +0000 Received: from cm14.websitewelcome.com (cm14.websitewelcome.com [100.42.49.7]) by gateway20.websitewelcome.com (Postfix) with ESMTP id 046AF400C6CA9 for ; Sat, 4 May 2019 15:11:50 -0500 (CDT) Received: from box5379.bluehost.com ([162.241.216.53]) by cmsmtp with SMTP id N10fhXq2K2qH7N10fhqGiz; Sat, 04 May 2019 15:11:50 -0500 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=tromey.com; s=default; h=References:In-Reply-To:Message-Id:Date:Subject:Cc:To:From: Sender:Reply-To:MIME-Version:Content-Type:Content-Transfer-Encoding: Content-ID:Content-Description:Resent-Date:Resent-From:Resent-Sender: Resent-To:Resent-Cc:Resent-Message-ID:List-Id:List-Help:List-Unsubscribe: List-Subscribe:List-Post:List-Owner:List-Archive; bh=/o6cBJWzTbHim338BC+YTG147qdXb/AEWyZNUT105G4=; b=ozaWKpBZxx1+4EABbm3Of1Z7jM fFRowqWcAliVt4hj0s1S/AwPSm7ks/fOjLX//1UTufL6ftIQQCr5x10FyLzD2eN/dy/WseDtL+Jv5 QAHvLeCrmCN+97At5FAKrvLYV; Received: from 97-122-168-123.hlrn.qwest.net ([97.122.168.123]:39978 helo=bapiya.Home) by box5379.bluehost.com with esmtpsa (TLSv1.2:ECDHE-RSA-AES256-GCM-SHA384:256) (Exim 4.91) (envelope-from ) id 1hN10f-004Jf3-PF; Sat, 04 May 2019 15:11:49 -0500 From: Tom Tromey To: gdb-patches@sourceware.org Cc: Tom Tromey Subject: [FYI 3/7] Use "false" in select_frame_for_mi Date: Sat, 4 May 2019 14:11:43 -0600 Message-Id: <20190504201147.3095-4-tom@tromey.com> In-Reply-To: <20190504201147.3095-1-tom@tromey.com> References: <20190504201147.3095-1-tom@tromey.com> This changes select_frame_for_mi to use "false" rather than "FALSE". gdb/ChangeLog 2019-05-04 Tom Tromey * stack.c (select_frame_for_mi): Use "false", not "FALSE". --- gdb/ChangeLog | 4 ++++ gdb/stack.c | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/gdb/stack.c b/gdb/stack.c index e5de10949d0..408c795e385 100644 --- a/gdb/stack.c +++ b/gdb/stack.c @@ -1653,7 +1653,7 @@ select_frame_command_core (struct frame_info *fi, bool ignored) void select_frame_for_mi (struct frame_info *fi) { - select_frame_command_core (fi, FALSE /* Ignored. */); + select_frame_command_core (fi, false /* Ignored. */); } /* The core of all the "frame" sub-commands. Select frame FI, and if this