diff options
author | Mike Frysinger <vapier@gentoo.org> | 2021-10-31 20:40:01 -0400 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2021-10-31 22:34:02 -0400 |
commit | fc3579da2ea6b2db27ac3003f818abd7786b9b30 (patch) | |
tree | 2b6847277de08e6096435b14dec4ea565cb21fbb /sim/ppc/lf.c | |
parent | e7360783aebee8e64402eac7a12163c0d2bb15b6 (diff) | |
download | gdb-fc3579da2ea6b2db27ac3003f818abd7786b9b30.zip gdb-fc3579da2ea6b2db27ac3003f818abd7786b9b30.tar.gz gdb-fc3579da2ea6b2db27ac3003f818abd7786b9b30.tar.bz2 |
sim: ppc: constify strings in igen tooling
Diffstat (limited to 'sim/ppc/lf.c')
-rw-r--r-- | sim/ppc/lf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sim/ppc/lf.c b/sim/ppc/lf.c index a3815a8..c40de5b 100644 --- a/sim/ppc/lf.c +++ b/sim/ppc/lf.c @@ -42,8 +42,8 @@ struct _lf { lf * -lf_open(char *name, - char *real_name, +lf_open(const char *name, + const char *real_name, lf_file_references references, lf_file_type type, const char *program) |