From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 15882 invoked by alias); 21 Mar 2007 15:27:28 -0000 Received: (qmail 15871 invoked by uid 22791); 21 Mar 2007 15:27:28 -0000 X-Spam-Check-By: sourceware.org Received: from lon-del-02.spheriq.net (HELO lon-del-02.spheriq.net) (195.46.50.98) by sourceware.org (qpsmtpd/0.31) with ESMTP; Wed, 21 Mar 2007 15:27:19 +0000 Received: from lon-out-03.spheriq.net ([195.46.50.131]) by lon-del-02.spheriq.net with ESMTP id l2LFRWPW008652 for ; Wed, 21 Mar 2007 15:27:32 GMT Received: from lon-cus-02.spheriq.net (lon-cus-02.spheriq.net [195.46.50.38]) by lon-out-03.spheriq.net with ESMTP id l2LFRG51005386 for ; Wed, 21 Mar 2007 15:27:16 GMT Received: from beta.dmz-eu.st.com (beta.dmz-eu.st.com [164.129.1.35]) by lon-cus-02.spheriq.net with ESMTP id l2LFREPo002915 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Wed, 21 Mar 2007 15:27:15 GMT Received: from zeta.dmz-eu.st.com (ns2.st.com [164.129.230.9]) by beta.dmz-eu.st.com (STMicroelectronics) with ESMTP id B29DDDA43 for ; Wed, 21 Mar 2007 15:27:14 +0000 (GMT) Received: from mail1.cro.st.com (mail1.cro.st.com [164.129.40.131]) by zeta.dmz-eu.st.com (STMicroelectronics) with ESMTP id 62B73474D6 for ; Wed, 21 Mar 2007 15:27:14 +0000 (GMT) Received: from [164.129.44.95] (crx595.cro.st.com [164.129.44.95]) by mail1.cro.st.com (MOS 3.7.5a-GA) with ESMTP id CKB14320 (AUTH "denis pilat"); Wed, 21 Mar 2007 16:27:12 +0100 (CET) Message-ID: <46014ED0.4040105@st.com> Date: Wed, 21 Mar 2007 15:27:00 -0000 From: Denis PILAT User-Agent: Thunderbird 1.5.0.10 (X11/20070221) MIME-Version: 1.0 To: gdb-patches Subject: Re: [RFA] typo in gdb/utils.c References: <46014C60.3000904@st.com> In-Reply-To: <46014C60.3000904@st.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed 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: 2007-03/txt/msg00187.txt.bz2 I could also remove the declaration but I don't know if some old compiler needs it ! -- Denis Denis PILAT wrote: > This trivial patch fixes a typo to declare pagination_off_command in > gdb/utils.c > > ------------------------------------------------------------------------ > > 2007-03-07 Denis Pilat > > * utils.c (pagination_off_command): Declaration. > > Index: utils.c > =================================================================== > RCS file: /cvs/src/src/gdb/utils.c,v > retrieving revision 1.174 > diff -u -p -r1.174 utils.c > --- utils.c 8 Feb 2007 16:18:56 -0000 1.174 > +++ utils.c 21 Mar 2007 15:11:40 -0000 > @@ -2448,7 +2448,7 @@ pagination_on_command (char *arg, int fr > pagination_enabled = 1; > } > > -static void pagination_on_command (char *arg, int from_tty); > +static void pagination_off_command (char *arg, int from_tty); > static void > pagination_off_command (char *arg, int from_tty) > { >