From 60d847df0b9691b7cb38bfba41b9d6aafd97efc2 Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Thu, 20 Feb 2014 00:28:17 -0500 Subject: sim: constify arg to sim_do_command It is rare for people to want to modify the cmd arg. In general, they really shouldn't be, but a few still do. For those who misbehave, dupe the string locally so they can bang on it. --- sim/mcore/ChangeLog | 4 ++++ sim/mcore/interp.c | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) (limited to 'sim/mcore') diff --git a/sim/mcore/ChangeLog b/sim/mcore/ChangeLog index c97a2c5..d65fda2 100644 --- a/sim/mcore/ChangeLog +++ b/sim/mcore/ChangeLog @@ -1,3 +1,7 @@ +2014-03-10 Mike Frysinger + + * interp.c (sim_do_command): Add const to cmd. + 2014-03-05 Mike Frysinger * interp.c (sim_load): Add const to prog. diff --git a/sim/mcore/interp.c b/sim/mcore/interp.c index 9b08de0..73da916 100644 --- a/sim/mcore/interp.c +++ b/sim/mcore/interp.c @@ -2130,7 +2130,7 @@ sim_kill (sd) void sim_do_command (sd, cmd) SIM_DESC sd; - char * cmd; + const char *cmd; { /* Nothing there yet; it's all an error. */ -- cgit v1.1