From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 31162 invoked by alias); 21 Mar 2007 16:25:25 -0000 Received: (qmail 31145 invoked by uid 22791); 21 Mar 2007 16:25:24 -0000 X-Spam-Check-By: sourceware.org Received: from sibelius.xs4all.nl (HELO brahms.sibelius.xs4all.nl) (82.92.89.47) by sourceware.org (qpsmtpd/0.31) with ESMTP; Wed, 21 Mar 2007 16:25:19 +0000 Received: from brahms.sibelius.xs4all.nl (kettenis@localhost.sibelius.xs4all.nl [127.0.0.1]) by brahms.sibelius.xs4all.nl (8.14.0/8.14.0) with ESMTP id l2LGPEIO022474; Wed, 21 Mar 2007 17:25:15 +0100 (CET) Received: (from kettenis@localhost) by brahms.sibelius.xs4all.nl (8.14.0/8.14.0/Submit) id l2LGPEL5008136; Wed, 21 Mar 2007 17:25:14 +0100 (CET) Date: Wed, 21 Mar 2007 16:25:00 -0000 Message-Id: <200703211625.l2LGPEL5008136@brahms.sibelius.xs4all.nl> From: Mark Kettenis To: denis.pilat@st.com CC: gdb-patches@sourceware.org In-reply-to: <46014C60.3000904@st.com> (message from Denis PILAT on Wed, 21 Mar 2007 16:16:48 +0100) Subject: Re: [RFA] typo in gdb/utils.c References: <46014C60.3000904@st.com> 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/msg00188.txt.bz2 > Date: Wed, 21 Mar 2007 16:16:48 +0100 > From: Denis PILAT > > This trivial patch fixes a typo to declare pagination_off_command in > gdb/utils.c Just whack the (redundant) prototype instead. > 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) > {