Fix -Wshadow warning
authorMatthew Fortune <matthew.fortune@imgtec.com>
Tue, 4 Nov 2014 23:40:22 +0000 (23:40 +0000)
committerMatthew Fortune <matthew.fortune@imgtec.com>
Tue, 4 Nov 2014 23:45:26 +0000 (23:45 +0000)
binutils/

* readelf.c (process_mips_specific): Rename index to idx.

binutils/ChangeLog
binutils/readelf.c

index f3c719631826bc0afbf4c61ddb8818416b05208d..d071381d46842f28b0cabe35e0e6b261f08c4d39 100644 (file)
@@ -1,3 +1,7 @@
+2014-11-04  Matthew Fortune  <matthew.fortune@imgtec.com>
+
+       * readelf.c (process_mips_specific): Rename index to idx.
+
 2014-11-04  Nick Clifton  <nickc@redhat.com>
 
        PR binutils/17531
index 03c2c5c22f6a8064a3015413572594012ce2e899..7c0c3ff60d790d3eb809ee3d48934db6da9333e0 100644 (file)
@@ -13579,16 +13579,16 @@ process_mips_specific (FILE * file)
       sym_width = (is_32bit_elf ? 80 : 160) - 17 - addr_size * 6 - 1;
       for (i = 0; i < count; i++)
        {
-         unsigned long index = get_reloc_symindex (rels[i].r_info);
+         unsigned long idx = get_reloc_symindex (rels[i].r_info);
 
          ent = print_mips_pltgot_entry (data, mips_pltgot, ent);
          printf (" ");
 
-         if (index >= num_dynamic_syms)
-           printf (_("<corrupt symbol index: %lu>"), index);
+         if (idx >= num_dynamic_syms)
+           printf (_("<corrupt symbol index: %lu>"), idx);
          else
            {
-             Elf_Internal_Sym * psym = dynamic_symbols + index;
+             Elf_Internal_Sym * psym = dynamic_symbols + idx;
 
              print_vma (psym->st_value, LONG_HEX);
              printf (" %-7s %3s ",
This page took 0.032902 seconds and 4 git commands to generate.