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 add_cmd gdb_bfd.c


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

commit e4e3333549c96d2915bb888b7b347566c938e75a
Author: Tom Tromey <tom@tromey.com>
Date:   Sat Sep 9 20:55:20 2017 -0600

    Constify add_cmd gdb_bfd.c
    
    This constifies a command function in gdb_bfd.c.
    
    gdb/ChangeLog
    2017-09-27  Tom Tromey  <tom@tromey.com>
    
    	* gdb_bfd.c (maintenance_info_bfds): Constify.

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

diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 54bc5b0..7cfd359 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,5 +1,9 @@
 2017-09-27  Tom Tromey  <tom@tromey.com>
 
+	* gdb_bfd.c (maintenance_info_bfds): Constify.
+
+2017-09-27  Tom Tromey  <tom@tromey.com>
+
 	* cli/cli-decode.c (add_cmd, set_cmd_cfunc): New function
 	overloads.
 	(do_add_cmd): Rename from add_cmd.  Don't call set_cmd_cfunc.
diff --git a/gdb/gdb_bfd.c b/gdb/gdb_bfd.c
index d80b3fb..29080b8 100644
--- a/gdb/gdb_bfd.c
+++ b/gdb/gdb_bfd.c
@@ -974,7 +974,7 @@ print_one_bfd (void **slot, void *data)
 /* Implement the 'maint info bfd' command.  */
 
 static void
-maintenance_info_bfds (char *arg, int from_tty)
+maintenance_info_bfds (const char *arg, int from_tty)
 {
   struct ui_out *uiout = current_uiout;


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