diff options
author | Nick Clifton <nickc@redhat.com> | 2013-04-17 14:16:01 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2013-04-17 14:16:01 +0000 |
commit | a253d456e1c74d11503d31fe813da7eeeceed338 (patch) | |
tree | e687c9c4b67bec8a1b0f59a807b7edc71fe4269b /bfd/elf32-hppa.c | |
parent | 17310e568d81f53c2674062aefd38d29974ed7fd (diff) | |
download | gdb-a253d456e1c74d11503d31fe813da7eeeceed338.zip gdb-a253d456e1c74d11503d31fe813da7eeeceed338.tar.gz gdb-a253d456e1c74d11503d31fe813da7eeeceed338.tar.bz2 |
* coffcode.h: Added a cast to void when a bfd_set_section_*()
macro's return value is ignored.
* elf32-hppa.c: Likewise.
* elf32-tic6x.c: Likewise.
* mach-o.c: Likewise.
* mmo.c: Likewise.
* opncls.c: Likewise.
* peicode.h: Likewise.
* elf32-m32r.c: Check return value of bfd_set_section_*().
* elfnn-ia64.c: Likewise.
* elfxx-mips.c: Likewise.
* vms-alpha.c: Likewise.
Diffstat (limited to 'bfd/elf32-hppa.c')
-rw-r--r-- | bfd/elf32-hppa.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/bfd/elf32-hppa.c b/bfd/elf32-hppa.c index 4ffa3d2..dfffbcb 100644 --- a/bfd/elf32-hppa.c +++ b/bfd/elf32-hppa.c @@ -1,7 +1,5 @@ /* BFD back-end for HP PA-RISC ELF files. - Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1999, 2000, 2001, - 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012 - Free Software Foundation, Inc. + Copyright 1990-2013 Free Software Foundation, Inc. Original code by Center for Software Science @@ -2370,7 +2368,7 @@ elf32_hppa_size_dynamic_sections (bfd *output_bfd ATTRIBUTE_UNUSED, bfd_size_type mask; if (gotalign > pltalign) - bfd_set_section_alignment (dynobj, sec, gotalign); + (void) bfd_set_section_alignment (dynobj, sec, gotalign); mask = ((bfd_size_type) 1 << gotalign) - 1; sec->size = (sec->size + sizeof (plt_stub) + mask) & ~mask; } |