diff options
author | Mark Mitchell <mark@codesourcery.com> | 1999-07-11 09:28:45 +0000 |
---|---|---|
committer | Mark Mitchell <mark@codesourcery.com> | 1999-07-11 09:28:45 +0000 |
commit | 9ebbd33e6f697c41861bdf9f3da0e4ffc5507cee (patch) | |
tree | f64ea3935ab8b9e4e14b2cbb5ec3c039e79c7bf8 /bfd/bfd-in2.h | |
parent | 65388f2d50331d138183307a91ebaa50ef608006 (diff) | |
download | gdb-9ebbd33e6f697c41861bdf9f3da0e4ffc5507cee.zip gdb-9ebbd33e6f697c41861bdf9f3da0e4ffc5507cee.tar.gz gdb-9ebbd33e6f697c41861bdf9f3da0e4ffc5507cee.tar.bz2 |
* libbfd.c (bfd_put_8): Make it of type `void'.
* bfd-in2.h: Regenerated.
* elf32-mips.c (MIPS_ELF_ADD_DYNAMIC_ENTRY): Conditionalize
for 32-bit hosts.
(_bfd_mips_elf_final_link): Likewise.
Diffstat (limited to 'bfd/bfd-in2.h')
-rw-r--r-- | bfd/bfd-in2.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bfd/bfd-in2.h b/bfd/bfd-in2.h index aa20c08..93eba0d 100644 --- a/bfd/bfd-in2.h +++ b/bfd/bfd-in2.h @@ -768,7 +768,7 @@ bfd_make_readable PARAMS ((bfd *abfd)); /* Byte swapping macros for user section data. */ #define bfd_put_8(abfd, val, ptr) \ - (*((unsigned char *)(ptr)) = (unsigned char)(val)) + ((void) (*((unsigned char *)(ptr)) = (unsigned char)(val))) #define bfd_put_signed_8 \ bfd_put_8 #define bfd_get_8(abfd, ptr) \ |