This is the mail archive of the gdb-patches@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[RFA] typo in gdb/utils.c


This trivial patch fixes a typo to declare pagination_off_command in gdb/utils.c

--
Denis

2007-03-07  Denis Pilat  <denis.pilat@st.com>

	* 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)
 {

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]