aboutsummaryrefslogtreecommitdiff
path: root/sim/ppc/sim_calls.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 /sim/ppc/sim_calls.c
parentcfa7ea2a961c0930cfd76006bd3811e98a8f2366 (diff)
downloadgdb-b2b255bdf3d29d97c10668b4bb5fceeb886a15f1.zip
gdb-b2b255bdf3d29d97c10668b4bb5fceeb886a15f1.tar.gz
gdb-b2b255bdf3d29d97c10668b4bb5fceeb886a15f1.tar.bz2
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 'sim/ppc/sim_calls.c')
-rw-r--r--sim/ppc/sim_calls.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sim/ppc/sim_calls.c b/sim/ppc/sim_calls.c
index a3ebba0..27ee1fe 100644
--- a/sim/ppc/sim_calls.c
+++ b/sim/ppc/sim_calls.c
@@ -97,7 +97,7 @@ sim_close (SIM_DESC sd, int quitting)
SIM_RC
-sim_load (SIM_DESC sd, char *prog, bfd *abfd, int from_tty)
+sim_load (SIM_DESC sd, const char *prog, bfd *abfd, int from_tty)
{
TRACE(trace_gdb, ("sim_load(prog=%s, from_tty=%d) called\n",
prog, from_tty));