This is the mail archive of the binutils@sources.redhat.com mailing list for the binutils project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

wee nm.c patch




quite a few occurrences of an eight char blank string in this file
already.

binutils/ChangeLog
	* MAINTAINERS: Update my email address
	* nm.c (print_symbol_info_bsd): Use a simple printf string.

Index: nm.c
===================================================================
RCS file: /cvs/src/src/binutils/nm.c,v
retrieving revision 1.12
diff -u -p -r1.12 nm.c
--- nm.c	2001/03/13 06:43:57	1.12
+++ nm.c	2001/04/11 01:28:25
@@ -1475,10 +1475,9 @@ print_symbol_info_bsd (info, abfd)
   if (bfd_is_undefined_symclass (info->type))
     {
 #ifdef BFD64
-      printf ("%*s", 16, "");
-#else
-      printf ("%*s", 8, "");
+      printf ("        ");
 #endif
+      printf ("        ");
     }
   else
     print_value (info->value);




Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]