summaryrefslogtreecommitdiff
path: root/gdb/remote-sim.c
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2014-02-20 00:13:48 -0500
committerMike Frysinger <vapier@gentoo.org>2014-03-05 01:42:44 -0500
commitb2b255bdf3d29d97c10668b4bb5fceeb886a15f1 (patch)
treed4c8c2c2efcfe48f3192592b3845f06e841f9942 /gdb/remote-sim.c
parentcfa7ea2a961c0930cfd76006bd3811e98a8f2366 (diff)
sim: constify prog_name
There's no need for the prog_name handed down to the core to be mutable, so add const markings to it and all the related funcs.
Diffstat (limited to 'gdb/remote-sim.c')
-rw-r--r--gdb/remote-sim.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/remote-sim.c b/gdb/remote-sim.c
index 0614690302..3bda043756 100644
--- a/gdb/remote-sim.c
+++ b/gdb/remote-sim.c
@@ -564,7 +564,7 @@ static void
gdbsim_load (struct target_ops *self, char *args, int fromtty)
{
char **argv;
- char *prog;
+ const char *prog;
struct sim_inferior_data *sim_data
= get_sim_inferior_data (current_inferior (), SIM_INSTANCE_NEEDED);