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:
parent
1ded560998
commit
81bb31c0d9
4 changed files with 28 additions and 16 deletions
|
@ -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));
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue