From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 30219 invoked by alias); 5 Jul 2011 18:38:45 -0000 Received: (qmail 30211 invoked by uid 22791); 5 Jul 2011 18:38:44 -0000 X-SWARE-Spam-Status: No, hits=-2.2 required=5.0 tests=AWL,BAYES_00,T_RP_MATCHES_RCVD X-Spam-Check-By: sourceware.org Received: from e24smtp02.br.ibm.com (HELO e24smtp02.br.ibm.com) (32.104.18.86) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Tue, 05 Jul 2011 18:38:29 +0000 Received: from mailhub1.br.ibm.com (mailhub1.br.ibm.com [9.18.232.109]) by e24smtp02.br.ibm.com (8.14.4/8.13.1) with ESMTP id p65Jkv0u027447 for ; Tue, 5 Jul 2011 16:46:57 -0300 Received: from d24av01.br.ibm.com (d24av01.br.ibm.com [9.8.31.91]) by mailhub1.br.ibm.com (8.13.8/8.13.8/NCO v10.0) with ESMTP id p65IeIbk299336 for ; Tue, 5 Jul 2011 15:40:20 -0300 Received: from d24av01.br.ibm.com (loopback [127.0.0.1]) by d24av01.br.ibm.com (8.14.4/8.13.1/NCO v10.0 AVout) with ESMTP id p65AcBIL011170 for ; Tue, 5 Jul 2011 07:38:11 -0300 Received: from [9.8.13.12] ([9.8.13.12]) by d24av01.br.ibm.com (8.14.4/8.13.1/NCO v10.0 AVin) with ESMTP id p65AcBKC011160; Tue, 5 Jul 2011 07:38:11 -0300 Subject: Re: [commit] Document ui_out_field_core_addr. From: Thiago Jung Bauermann To: Tom Tromey Cc: gdb-patches ml In-Reply-To: References: <1309805674.4471.6.camel@hactar> Content-Type: text/plain; charset="UTF-8" Date: Tue, 05 Jul 2011 19:18:00 -0000 Message-ID: <1309891085.3634.1.camel@hactar> Mime-Version: 1.0 Content-Transfer-Encoding: 7bit X-IsSubscribed: yes Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org X-SW-Source: 2011-07/txt/msg00165.txt.bz2 On Tue, 2011-07-05 at 10:26 -0600, Tom Tromey wrote: > >>>>> "Thiago" == Thiago Jung Bauermann writes: > > Thiago> 2011-07-04 Thiago Jung Bauermann > Thiago> * ui-out.c (ui_out_field_core_addr): Mention that the function > Thiago> description is in the header file. > Thiago> * ui-out.h (ui_out_field_core_addr): Document function. > > Thiago> +/* Output a field containing an addresses. */ > > s/addresses/address/ > > Ok with that change. I had already committed the patch under the obvious rule. Here's the patch I just committed. -- []'s Thiago Jung Bauermann IBM Linux Technology Center 2011-07-05 Thiago Jung Bauermann * ui-out.h (ui_out_field_core_addr): Fix typo in comment. diff --git a/gdb/ui-out.h b/gdb/ui-out.h index ee6d98f..b0fddd8 100644 --- a/gdb/ui-out.h +++ b/gdb/ui-out.h @@ -113,7 +113,7 @@ extern void ui_out_field_fmt_int (struct ui_out *uiout, int width, enum ui_align align, const char *fldname, int value); -/* Output a field containing an addresses. */ +/* Output a field containing an address. */ extern void ui_out_field_core_addr (struct ui_out *uiout, const char *fldname, struct gdbarch *gdbarch, CORE_ADDR address);