forked from Imagelibrary/binutils-gdb
sim: sim_{create_inferior,open,parse_args}: constify argv/env slightly
2016-01-03 Mike Frysinger <vapier@gentoo.org> * sim-options.c (sim_parse_args): Mark argv array const. * sim-options.h (sim_parse_args): Likewise.
This commit is contained in:
@@ -60,7 +60,7 @@ static int open;
|
||||
SIM_DESC
|
||||
sim_open (SIM_OPEN_KIND kind,
|
||||
struct host_callback_struct *callback,
|
||||
struct bfd *abfd, char **argv)
|
||||
struct bfd *abfd, char * const *argv)
|
||||
{
|
||||
setbuf (stdout, 0);
|
||||
if (open)
|
||||
@@ -144,7 +144,8 @@ sim_load (SIM_DESC sd, const char *prog, struct bfd * abfd, int from_tty)
|
||||
}
|
||||
|
||||
SIM_RC
|
||||
sim_create_inferior (SIM_DESC sd, struct bfd * abfd, char **argv, char **env)
|
||||
sim_create_inferior (SIM_DESC sd, struct bfd * abfd,
|
||||
char * const *argv, char * const *env)
|
||||
{
|
||||
check_desc (sd);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user