aboutsummaryrefslogtreecommitdiff
path: root/binutils/objcopy.c
diff options
context:
space:
mode:
authorTom Tromey <tom@tromey.com>2019-09-08 09:53:43 -0600
committerTom Tromey <tom@tromey.com>2019-09-11 07:02:46 -0600
commit1ff5d5c46342727ad6728732e122f963fbb2268b (patch)
tree44aa813121fce09cde35afe2068b7c5ece838a0e /binutils/objcopy.c
parent0a4632b5637fa63ea4dc7651cdbae21e8b7005cd (diff)
downloadgdb-1ff5d5c46342727ad6728732e122f963fbb2268b.zip
gdb-1ff5d5c46342727ad6728732e122f963fbb2268b.tar.gz
gdb-1ff5d5c46342727ad6728732e122f963fbb2268b.tar.bz2
Constify argument to make_tempname and make_tempdir
This constifies the argument to make_tempname and make_tempdir, removing some casts. I initially thought that this obsoleted the allocation in write_archive, but write_archive closes the BFD before using the name, so this appears not to be the case. binutils/ChangeLog 2019-09-11 Tom Tromey <tom@tromey.com> * objcopy.c (copy_archive): Update. * bucomm.h (make_tempname, make_tempdir): Make argument const. * bucomm.c (make_tempname, make_tempdir): Make argument const.
Diffstat (limited to 'binutils/objcopy.c')
-rw-r--r--binutils/objcopy.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/binutils/objcopy.c b/binutils/objcopy.c
index b702e52..ebb9933 100644
--- a/binutils/objcopy.c
+++ b/binutils/objcopy.c
@@ -3311,7 +3311,7 @@ copy_archive (bfd *ibfd, bfd *obfd, const char *output_target,
}
/* Make a temp directory to hold the contents. */
- dir = make_tempdir ((char *) bfd_get_filename (obfd));
+ dir = make_tempdir (bfd_get_filename (obfd));
if (dir == NULL)
fatal (_("cannot create tempdir for archive copying (error: %s)"),
strerror (errno));