Index: bfd/elf-attrs.c |
diff --git a/bfd/elf-attrs.c b/bfd/elf-attrs.c |
index 569e846cc5474605fdcc5b941d1ecd994e8ca605..4237af58eb749ae840e02b0ffd6096c7e2f45740 100644 |
--- a/bfd/elf-attrs.c |
+++ b/bfd/elf-attrs.c |
@@ -1,5 +1,5 @@ |
/* ELF attributes support (based on ARM EABI attributes). |
- Copyright 2005, 2006, 2007, 2009, 2010 |
+ Copyright 2005, 2006, 2007, 2009, 2010, 2012 |
Free Software Foundation, Inc. |
This file is part of BFD, the Binary File Descriptor library. |
@@ -428,7 +428,7 @@ _bfd_elf_parse_attributes (bfd *abfd, Elf_Internal_Shdr * hdr) |
bfd_byte *contents; |
bfd_byte *p; |
bfd_vma len; |
- const char *std_section; |
+ const char *std_sec; |
contents = (bfd_byte *) bfd_malloc (hdr->sh_size); |
if (!contents) |
@@ -440,7 +440,7 @@ _bfd_elf_parse_attributes (bfd *abfd, Elf_Internal_Shdr * hdr) |
return; |
} |
p = contents; |
- std_section = get_elf_backend_data (abfd)->obj_attrs_vendor; |
+ std_sec = get_elf_backend_data (abfd)->obj_attrs_vendor; |
if (*(p++) == 'A') |
{ |
len = hdr->sh_size - 1; |
@@ -455,11 +455,11 @@ _bfd_elf_parse_attributes (bfd *abfd, Elf_Internal_Shdr * hdr) |
if (section_len > len) |
section_len = len; |
len -= section_len; |
- namelen = strlen ((char *)p) + 1; |
+ namelen = strlen ((char *) p) + 1; |
section_len -= namelen + 4; |
- if (std_section && strcmp ((char *)p, std_section) == 0) |
+ if (std_sec && strcmp ((char *) p, std_sec) == 0) |
vendor = OBJ_ATTR_PROC; |
- else if (strcmp ((char *)p, "gnu") == 0) |
+ else if (strcmp ((char *) p, "gnu") == 0) |
vendor = OBJ_ATTR_GNU; |
else |
{ |