summaryrefslogtreecommitdiff
path: root/ldso
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2005-07-08 02:37:53 +0000
committerMike Frysinger <vapier@gentoo.org>2005-07-08 02:37:53 +0000
commitb8697036427ad0bc064326bcd4f16c62464f40e8 (patch)
tree2c96daff2dea4e143be344113d02984f45dcf600 /ldso
parent0281752d5fa4444a8948b9de1d7b31f647e46f58 (diff)
help if i named the var correctly ...
Diffstat (limited to 'ldso')
-rw-r--r--ldso/ldso/m68k/dl-debug.h2
-rw-r--r--ldso/ldso/m68k/elfinterp.c4
2 files changed, 3 insertions, 3 deletions
diff --git a/ldso/ldso/m68k/dl-debug.h b/ldso/ldso/m68k/dl-debug.h
index 1532c9933..a9a80a067 100644
--- a/ldso/ldso/m68k/dl-debug.h
+++ b/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",
diff --git a/ldso/ldso/m68k/elfinterp.c b/ldso/ldso/m68k/elfinterp.c
index b1d1e4f1e..c777faa5b 100644
--- a/ldso/ldso/m68k/elfinterp.c
+++ b/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);