From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 9209 invoked by alias); 21 Mar 2007 15:17:42 -0000 Received: (qmail 9195 invoked by uid 22791); 21 Mar 2007 15:17:42 -0000 X-Spam-Check-By: sourceware.org Received: from lon-del-04.spheriq.net (HELO lon-del-04.spheriq.net) (195.46.50.101) by sourceware.org (qpsmtpd/0.31) with ESMTP; Wed, 21 Mar 2007 15:17:35 +0000 Received: from lon-out-03.spheriq.net ([195.46.50.131]) by lon-del-04.spheriq.net with ESMTP id l2LFHW6C011543 for ; Wed, 21 Mar 2007 15:17: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 l2LFHUgn003444 for ; Wed, 21 Mar 2007 15:17:31 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 l2LFHPQ9032201 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Wed, 21 Mar 2007 15:17:30 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 0B1E8DA42 for ; Wed, 21 Mar 2007 15:17:15 +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 4B2E147579 for ; Wed, 21 Mar 2007 15:16:49 +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 CKB13994 (AUTH "denis pilat"); Wed, 21 Mar 2007 16:16:48 +0100 (CET) Message-ID: <46014C60.3000904@st.com> Date: Wed, 21 Mar 2007 15:17:00 -0000 From: Denis PILAT User-Agent: Thunderbird 1.5.0.10 (X11/20070221) MIME-Version: 1.0 To: gdb-patches Subject: [RFA] typo in gdb/utils.c Content-Type: multipart/mixed; boundary="------------090009040606090101000803" 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/msg00186.txt.bz2 This is a multi-part message in MIME format. --------------090009040606090101000803 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-length: 94 This trivial patch fixes a typo to declare pagination_off_command in gdb/utils.c -- Denis --------------090009040606090101000803 Content-Type: text/plain; name="utils.c.patch" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="utils.c.patch" Content-length: 640 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) { --------------090009040606090101000803--