elf64-s390.c: Fix -Werror=misleading-indentation
authorJan Kratochvil <jan.kratochvil@redhat.com>
Mon, 1 Feb 2016 02:47:47 +0000 (03:47 +0100)
committerJan Kratochvil <jan.kratochvil@redhat.com>
Mon, 1 Feb 2016 02:47:47 +0000 (03:47 +0100)
../../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.

bfd/ChangeLog
bfd/elf64-s390.c

index 83472f4..51444e6 100644 (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
index 3887e8d..1261044 100644 (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;
 }