This is the mail archive of the gdb-cvs@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]

[binutils-gdb] Constify maintenance_print_reggroups


https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=34e5fa26b758250fca879799375f27c1fd8ed36d

commit 34e5fa26b758250fca879799375f27c1fd8ed36d
Author: Tom Tromey <tom@tromey.com>
Date:   Tue Sep 12 21:13:51 2017 -0600

    Constify maintenance_print_reggroups
    
    gdb/ChangeLog
    2017-09-27  Tom Tromey  <tom@tromey.com>
    
    	* reggroups.c (maintenance_print_reggroups): Constify.

Diff:
---
 gdb/ChangeLog   | 4 ++++
 gdb/reggroups.c | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 8aa6b13..32d1ee2 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,5 +1,9 @@
 2017-09-27  Tom Tromey  <tom@tromey.com>
 
+	* reggroups.c (maintenance_print_reggroups): Constify.
+
+2017-09-27  Tom Tromey  <tom@tromey.com>
+
 	* dwarf2read.c (save_gdb_index_command): Constify.
 
 2017-09-27  Tom Tromey  <tom@tromey.com>
diff --git a/gdb/reggroups.c b/gdb/reggroups.c
index 512fe11..2ecd0b4 100644
--- a/gdb/reggroups.c
+++ b/gdb/reggroups.c
@@ -262,7 +262,7 @@ reggroups_dump (struct gdbarch *gdbarch, struct ui_file *file)
 }
 
 static void
-maintenance_print_reggroups (char *args, int from_tty)
+maintenance_print_reggroups (const char *args, int from_tty)
 {
   struct gdbarch *gdbarch = get_current_arch ();


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