diff options
author | Nick Clifton <nickc@redhat.com> | 2012-01-06 15:44:30 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2012-01-06 15:44:30 +0000 |
commit | 28a1b4f812be8e5351e3ebeaa561c477ff6d8b89 (patch) | |
tree | 82e20786425e59643b1fe84a54492612d3b1325a /bfd/reloc.c | |
parent | 36f0a48f6c9a1927618d55b4a7df8ddfbfd0fb9d (diff) | |
download | binutils-28a1b4f812be8e5351e3ebeaa561c477ff6d8b89.zip binutils-28a1b4f812be8e5351e3ebeaa561c477ff6d8b89.tar.gz binutils-28a1b4f812be8e5351e3ebeaa561c477ff6d8b89.tar.bz2 |
PR binutils/13121
* reloc.c (bfd_generic_lookup_section_flags): Rename 'finfo' to
'flaginfo' to avoid conflicts with AIX system headers.
Diffstat (limited to 'bfd/reloc.c')
-rw-r--r-- | bfd/reloc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bfd/reloc.c b/bfd/reloc.c index e377899..5cde4a8 100644 --- a/bfd/reloc.c +++ b/bfd/reloc.c @@ -6237,9 +6237,9 @@ DESCRIPTION void bfd_generic_lookup_section_flags (struct bfd_link_info *info ATTRIBUTE_UNUSED, - struct flag_info *finfo) + struct flag_info *flaginfo) { - if (finfo != NULL) + if (flaginfo != NULL) { (*_bfd_error_handler) (_("INPUT_SECTION_FLAGS are not supported.\n")); return; |