diff options
author | Alan Modra <amodra@gmail.com> | 2021-03-29 09:42:37 +1030 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2021-03-29 11:22:21 +1030 |
commit | f4f9ede04272c1417b187afe6964e5c0687f1904 (patch) | |
tree | c8a3f5bfa5203c3fe01dba909ad82b76b4af8be6 /bfd/coff-z80.c | |
parent | 1201fda61b3bcf0028a57e622aebb16ec614f7dc (diff) | |
download | binutils-gdb-f4f9ede04272c1417b187afe6964e5c0687f1904.tar.gz |
Miscellaneous BFD int vs bfd_boolean fixes
nds32 hyper_relax takes values of 0, 1 and 2. vms_write_data_block
return TRUE/FALSE not positive/negative.
* coff-z80.c (z80_is_local_label_name): Return bfd_boolean.
* elf32-z80.c (z80_is_local_label_name): Likewise.
* elf32-spu.c (spu_elf_modify_headers): Likewise.
* elf32-nds32.h (struct elf_nds32_link_hash_table <hyper_relax>):
Change type to int.
* vms-lib.c (_bfd_vms_lib_write_archive_contents): Correct test
for error return from vms_write_data_block.
Diffstat (limited to 'bfd/coff-z80.c')
-rw-r--r-- | bfd/coff-z80.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bfd/coff-z80.c b/bfd/coff-z80.c index 9d1d9c599cb..a47a5385773 100644 --- a/bfd/coff-z80.c +++ b/bfd/coff-z80.c @@ -452,7 +452,7 @@ extra_case (bfd *in_abfd, } } -static int +static bfd_boolean z80_is_local_label_name (bfd * abfd ATTRIBUTE_UNUSED, const char * name) { |