elf64-s390.c: Fix -Werror=misleading-indentation

../../bfd/elf64-s390.c: In function 'elf_s390_reloc_name_lookup':
../../bfd/elf64-s390.c:340:5: error: statement is indented as if it were guarded by... [-Werror=misleading-indentation]
     if (strcasecmp (elf64_s390_vtinherit_howto.name, r_name) == 0)
     ^~
../../bfd/elf64-s390.c:333:3: note: ...this 'for' clause, but it is not
   for (i = 0;
   ^~~

bfd/
	* elf64-s390.c (elf_s390_reloc_name_lookup): Fix indentation.
This commit is contained in:
Jan Kratochvil 2016-02-01 03:47:47 +01:00
parent 9c08af2d81
commit 0bc7245a3a
2 changed files with 8 additions and 4 deletions

View File

@ -1,3 +1,7 @@
2016-02-01 Jan Kratochvil <jan.kratochvil@redhat.com>
* elf64-s390.c (elf_s390_reloc_name_lookup): Fix indentation.
2016-01-31 John David Anglin <danglin@gcc.gnu.org>
PR ld/19526

View File

@ -337,10 +337,10 @@ elf_s390_reloc_name_lookup (bfd *abfd ATTRIBUTE_UNUSED,
&& strcasecmp (elf_howto_table[i].name, r_name) == 0)
return &elf_howto_table[i];
if (strcasecmp (elf64_s390_vtinherit_howto.name, r_name) == 0)
return &elf64_s390_vtinherit_howto;
if (strcasecmp (elf64_s390_vtentry_howto.name, r_name) == 0)
return &elf64_s390_vtentry_howto;
if (strcasecmp (elf64_s390_vtinherit_howto.name, r_name) == 0)
return &elf64_s390_vtinherit_howto;
if (strcasecmp (elf64_s390_vtentry_howto.name, r_name) == 0)
return &elf64_s390_vtentry_howto;
return NULL;
}