Browse Source

help if i named the var correctly ...

Mike Frysinger 19 years ago
parent
commit
d035aff96d
1 changed files with 2 additions and 2 deletions
  1. 2 2
      ldso/ldso/sparc/elfinterp.c

+ 2 - 2
ldso/ldso/sparc/elfinterp.c

@@ -165,7 +165,7 @@ void _dl_parse_lazy_relocation_information(struct dyn_elf *arg_rpnt,
     default:
       _dl_dprintf(2, "%s: (LAZY) can't handle reloc type ", _dl_progname);
 #if defined (__SUPPORT_LD_DEBUG__)
-      _dl_dprintf(2, "%s ", _dl_reltypes[reloc_type]);
+      _dl_dprintf(2, "%s ", _dl_reltypes_tab[reloc_type]);
 #endif
       if(symtab_index) _dl_dprintf(2, "'%s'\n",
 				  strtab + symtab[symtab_index].st_name);
@@ -256,7 +256,7 @@ int _dl_parse_relocation_information(struct dyn_elf *arg_rpnt,
     default:
       _dl_dprintf(2, "%s: can't handle reloc type ", _dl_progname);
 #if defined (__SUPPORT_LD_DEBUG__)
-      _dl_dprintf(2, "%s ", _dl_reltypes[reloc_type]);
+      _dl_dprintf(2, "%s ", _dl_reltypes_tab[reloc_type]);
 #endif
       if (symtab_index)
 	_dl_dprintf(2, "'%s'\n", strtab + symtab[symtab_index].st_name);