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.
+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.
+
2019-09-11 Alan Modra <amodra@gmail.com>
PR 24907
as FILENAME. */
char *
-make_tempname (char *filename)
+make_tempname (const char *filename)
{
char *tmpname = template_in_dir (filename);
int fd;
directory containing FILENAME. */
char *
-make_tempdir (char *filename)
+make_tempdir (const char *filename)
{
char *tmpname = template_in_dir (filename);
void print_arelt_descr (FILE *, bfd *, bfd_boolean, bfd_boolean);
-char *make_tempname (char *);
-char *make_tempdir (char *);
+char *make_tempname (const char *);
+char *make_tempdir (const char *);
bfd_vma parse_vma (const char *, const char *);
}
/* 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));