summaryrefslogtreecommitdiff
path: root/bfd/elf-bfd.h
diff options
context:
space:
mode:
authorH.J. Lu <hjl@lucon.org>2005-04-04 16:11:02 +0000
committerH.J. Lu <hjl@lucon.org>2005-04-04 16:11:02 +0000
commitaf96d4ffb6a505e67cbed6fac953b7ff3ae83350 (patch)
treeaeee2bb52a034d86ad96b78814dc1f9ab8b94fe5 /bfd/elf-bfd.h
parente6b51ab8584615b630f75fa3431294887886964a (diff)
downloadgdb-af96d4ffb6a505e67cbed6fac953b7ff3ae83350.tar.gz
2005-04-04 H.J. Lu <hongjiu.lu@intel.com>
* elf-bfd.h (elf_section_data): Use (sec) instead of sec.
Diffstat (limited to 'bfd/elf-bfd.h')
-rw-r--r--bfd/elf-bfd.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/bfd/elf-bfd.h b/bfd/elf-bfd.h
index 9d3871b0436..e8cd8e0fa26 100644
--- a/bfd/elf-bfd.h
+++ b/bfd/elf-bfd.h
@@ -1115,7 +1115,7 @@ struct bfd_elf_section_data
void *sec_info;
};
-#define elf_section_data(sec) ((struct bfd_elf_section_data*)sec->used_by_bfd)
+#define elf_section_data(sec) ((struct bfd_elf_section_data*)(sec)->used_by_bfd)
#define elf_linked_to_section(sec) (elf_section_data(sec)->linked_to)
#define elf_section_type(sec) (elf_section_data(sec)->this_hdr.sh_type)
#define elf_section_flags(sec) (elf_section_data(sec)->this_hdr.sh_flags)