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_symbol_file_from_memory_command


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

commit c9d31bd6579d5bbd672937a76258031675d40f34
Author: Tom Tromey <tom@tromey.com>
Date:   Tue Sep 12 21:17:01 2017 -0600

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

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

diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index e089959..b67c617 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,5 +1,9 @@
 2017-09-27  Tom Tromey  <tom@tromey.com>
 
+	* symfile-mem.c (add_symbol_file_from_memory_command): Constify.
+
+2017-09-27  Tom Tromey  <tom@tromey.com>
+
 	* demangle.c (demangle_command): Constify.
 
 2017-09-27  Tom Tromey  <tom@tromey.com>
diff --git a/gdb/symfile-mem.c b/gdb/symfile-mem.c
index b3543d6..6f34cab 100644
--- a/gdb/symfile-mem.c
+++ b/gdb/symfile-mem.c
@@ -145,7 +145,7 @@ symbol_file_add_from_memory (struct bfd *templ, CORE_ADDR addr,
 
 
 static void
-add_symbol_file_from_memory_command (char *args, int from_tty)
+add_symbol_file_from_memory_command (const char *args, int from_tty)
 {
   CORE_ADDR addr;
   struct bfd *templ;


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