aboutsummaryrefslogtreecommitdiff
path: root/gdb/disasm.c
diff options
context:
space:
mode:
authorTom Tromey <tromey@adacore.com>2024-03-21 11:02:10 -0600
committerTom Tromey <tromey@adacore.com>2024-03-22 13:17:43 -0600
commit9f1c94481f875134df177bfc6ba1ad4e4e50b478 (patch)
treeb6237e308403b883f1b6a60e99a621c8f0eec633 /gdb/disasm.c
parent319719bb2921e978738acd408e6b16dabf0e7f5e (diff)
downloadgdb-9f1c94481f875134df177bfc6ba1ad4e4e50b478.zip
gdb-9f1c94481f875134df177bfc6ba1ad4e4e50b478.tar.gz
gdb-9f1c94481f875134df177bfc6ba1ad4e4e50b478.tar.bz2
Constify get_disassembler_options
This changes get_disassembler_options to return a const char *. Approved-By: John Baldwin <jhb@FreeBSD.org>
Diffstat (limited to 'gdb/disasm.c')
-rw-r--r--gdb/disasm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/disasm.c b/gdb/disasm.c
index 15d641c..5bab5cf 100644
--- a/gdb/disasm.c
+++ b/gdb/disasm.c
@@ -1291,7 +1291,7 @@ gdb_buffered_insn_length (struct gdbarch *gdbarch,
return result;
}
-char *
+const char *
get_disassembler_options (struct gdbarch *gdbarch)
{
char **disassembler_options = gdbarch_disassembler_options (gdbarch);