mirror of
https://github.com/bminor/binutils-gdb.git
synced 2025-12-26 01:07:52 +00:00
2010-06-11 Tristan Gingold <gingold@adacore.com>
* vms-misc.c (_bfd_vms_output_counted): Make VALUE argument const. Adjust cast. (_bfd_vms_output_dump): Make DATA argument const, adjust cast. * vms.h (_bfd_vms_output_counted, _bfd_vms_output_dump): Adjust. * vms-alpha.c (evax_section_flags): Make it const. (vms_secflag_by_name): Remove unused ABFD argument. Make SECTION_FLAGS and NAME arguments const. Clarify comment. (vms_esecflag_by_name): Make SECTION_FLAGS and NAME arguments const. (_bfd_vms_slurp_egsd): Adjust call to vms_secflag_by_name. (_bfd_vms_write_egsd): Remove useless cast.
This commit is contained in:
@@ -348,7 +348,7 @@ _bfd_vms_output_quad (struct vms_rec_wr *recwr, bfd_vma value)
|
||||
/* Output c-string as counted string. */
|
||||
|
||||
void
|
||||
_bfd_vms_output_counted (struct vms_rec_wr *recwr, char *value)
|
||||
_bfd_vms_output_counted (struct vms_rec_wr *recwr, const char *value)
|
||||
{
|
||||
int len;
|
||||
|
||||
@@ -366,13 +366,13 @@ _bfd_vms_output_counted (struct vms_rec_wr *recwr, char *value)
|
||||
return;
|
||||
}
|
||||
_bfd_vms_output_byte (recwr, (unsigned int) len & 0xff);
|
||||
_bfd_vms_output_dump (recwr, (unsigned char *) value, len);
|
||||
_bfd_vms_output_dump (recwr, (const unsigned char *)value, len);
|
||||
}
|
||||
|
||||
/* Output character area. */
|
||||
|
||||
void
|
||||
_bfd_vms_output_dump (struct vms_rec_wr *recwr, unsigned char *data, int len)
|
||||
_bfd_vms_output_dump (struct vms_rec_wr *recwr, const unsigned char *data, int len)
|
||||
{
|
||||
vms_debug2 ((6, "_bfd_vms_output_dump (%d)\n", len));
|
||||
|
||||
|
||||
Reference in New Issue
Block a user