Browse Source

help if i named the var correctly ...

Mike Frysinger 19 years ago
parent
commit
b869703642
2 changed files with 3 additions and 3 deletions
  1. 1 1
      ldso/ldso/m68k/dl-debug.h
  2. 2 2
      ldso/ldso/m68k/elfinterp.c

+ 1 - 1
ldso/ldso/m68k/dl-debug.h

@@ -29,7 +29,7 @@
  * SUCH DAMAGE.
  */
 
-static const char *_dl_reltypes[] = {
+static const char *_dl_reltypes_tab[] = {
 	 [0] "R_68K_NONE",
 	 [1] "R_68K_32",     "R_68K_16",       "R_68K_8",
 	 [4] "R_68K_PC32",   "R_68K_PC16",     "R_68K_PC8",

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

@@ -137,7 +137,7 @@ _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'", strtab + symtab[symtab_index].st_name);
@@ -234,7 +234,7 @@ _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'", strtab + symtab[symtab_index].st_name);