[uClibc-cvs] svn commit: trunk/uClibc/ldso/ldso/m68k

vapier at uclibc.org vapier at uclibc.org
Fri Jul 8 02:37:53 UTC 2005


Author: vapier
Date: 2005-07-07 20:37:53 -0600 (Thu, 07 Jul 2005)
New Revision: 10747

Log:
help if i named the var correctly ...

Modified:
   trunk/uClibc/ldso/ldso/m68k/dl-debug.h
   trunk/uClibc/ldso/ldso/m68k/elfinterp.c


Changeset:
Modified: trunk/uClibc/ldso/ldso/m68k/dl-debug.h
===================================================================
--- trunk/uClibc/ldso/ldso/m68k/dl-debug.h	2005-07-08 02:37:19 UTC (rev 10746)
+++ trunk/uClibc/ldso/ldso/m68k/dl-debug.h	2005-07-08 02:37:53 UTC (rev 10747)
@@ -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",

Modified: trunk/uClibc/ldso/ldso/m68k/elfinterp.c
===================================================================
--- trunk/uClibc/ldso/ldso/m68k/elfinterp.c	2005-07-08 02:37:19 UTC (rev 10746)
+++ trunk/uClibc/ldso/ldso/m68k/elfinterp.c	2005-07-08 02:37:53 UTC (rev 10747)
@@ -137,7 +137,7 @@
 		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 @@
 			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);




More information about the uClibc-cvs mailing list