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.h | |
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.h')
-rw-r--r-- | sim/ppc/lf.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sim/ppc/lf.h b/sim/ppc/lf.h index fabf8fb..f1c41a9 100644 --- a/sim/ppc/lf.h +++ b/sim/ppc/lf.h @@ -42,8 +42,8 @@ typedef enum { suppressed with LINE_NUMBERS */ extern lf *lf_open -(char *name, - char *real_name, +(const char *name, + const char *real_name, lf_file_references file_references, lf_file_type type, const char *program); |