diff options
author | Tom Tromey <tom@tromey.com> | 2020-03-04 16:24:08 -0700 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2020-03-04 16:30:29 -0700 |
commit | 4e7625fde223fd0c98f09f41fe924e7317a82e1a (patch) | |
tree | 30f8214f883c378b30abc9ec95c9d84765ff6f2c /gdb/jit.c | |
parent | baf09cba8f97be8044f7422cb31b1cb3f23e2762 (diff) | |
download | gdb-4e7625fde223fd0c98f09f41fe924e7317a82e1a.zip gdb-4e7625fde223fd0c98f09f41fe924e7317a82e1a.tar.gz gdb-4e7625fde223fd0c98f09f41fe924e7317a82e1a.tar.bz2 |
Make "gnutarget" const
I noticed that gnutarget was not "const". Since writing through this
pointer would probably be a bug, I think it ought to be. This patch
makes the change.
gdb/ChangeLog
2020-03-04 Tom Tromey <tom@tromey.com>
* jit.c (bfd_open_from_target_memory): Make "target" const.
* corefile.c (gnutarget): Now const.
* gdbcore.h (gnutarget): Now const.
Diffstat (limited to 'gdb/jit.c')
-rw-r--r-- | gdb/jit.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -136,7 +136,8 @@ mem_bfd_iovec_stat (struct bfd *abfd, void *stream, struct stat *sb) /* Open a BFD from the target's memory. */ static gdb_bfd_ref_ptr -bfd_open_from_target_memory (CORE_ADDR addr, ULONGEST size, char *target) +bfd_open_from_target_memory (CORE_ADDR addr, ULONGEST size, + const char *target) { struct target_buffer *buffer = XNEW (struct target_buffer); |