From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from devianza.investici.org (devianza.investici.org [198.167.222.108]) by sourceware.org (Postfix) with ESMTPS id 7C96B3857814 for ; Sat, 6 Nov 2021 16:22:20 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 7C96B3857814 Received: from mx2.investici.org (unknown [127.0.0.1]) by devianza.investici.org (Postfix) with ESMTP id 4HmjMG6k0Cz6vJw for ; Sat, 6 Nov 2021 16:22:18 +0000 (UTC) Received: from [198.167.222.108] (mx2.investici.org [198.167.222.108]) (Authenticated sender: andrea.monaco@autistici.org) by localhost (Postfix) with ESMTPSA id 4HmjMG5XjHz6vJv for ; Sat, 6 Nov 2021 16:22:18 +0000 (UTC) From: Andrea Monaco To: gdb@sourceware.org Subject: [PATCH] gnu-nat.c: fix calls to add_info_alias Date: Sat, 06 Nov 2021 17:22:17 +0100 Message-ID: <87h7cp8dae.fsf@autistici.org> MIME-Version: 1.0 Content-Type: text/plain X-Spam-Status: No, score=-10.8 required=5.0 tests=BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, GIT_PATCH_0, RCVD_IN_DNSWL_NONE, SPF_HELO_PASS, SPF_PASS, TXREP autolearn=ham autolearn_force=no version=3.4.4 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on server2.sourceware.org X-BeenThere: gdb@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gdb mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 06 Nov 2021 16:22:22 -0000 Hello, some time ago add_info_alias was changed (commit e0f25bd9717c7973197095523db7c1cdc956cea2). These calls were not updated and caused errors on compilation. Warmly, Andrea Monaco diff --git a/gdb/gnu-nat.c b/gdb/gnu-nat.c index c6cecff0686..2d15b3d3e58 100644 --- a/gdb/gnu-nat.c +++ b/gdb/gnu-nat.c @@ -3286,15 +3286,17 @@ This is the same as setting `task pause', `exceptions', and\n\ _("Show information about the task's send rights.")); add_info ("receive-rights", info_recv_rights_cmd, _("Show information about the task's receive rights.")); - add_info ("port-rights", info_port_rights_cmd, - _("Show information about the task's port rights.")); - add_info ("port-sets", info_port_sets_cmd, - _("Show information about the task's port sets.")); + cmd_list_element *port_rights_cmd = + add_info ("port-rights", info_port_rights_cmd, + _("Show information about the task's port rights.")); + cmd_list_element *port_sets_cmd = + add_info ("port-sets", info_port_sets_cmd, + _("Show information about the task's port sets.")); add_info ("dead-names", info_dead_names_cmd, _("Show information about the task's dead names.")); - add_info_alias ("ports", "port-rights", 1); - add_info_alias ("port", "port-rights", 1); - add_info_alias ("psets", "port-sets", 1); + add_info_alias ("ports", port_rights_cmd, 1); + add_info_alias ("port", port_rights_cmd, 1); + add_info_alias ("psets", port_sets_cmd, 1); } ^L