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]
Other format: [Raw text]

PATCH: Fix typo in readelf error message


Hi Guys,

  I am applying the below to fix a small typo in an error message
  issued by readelf.

Cheers
  Nick

binutils/ChangeLog
2004-11-02  Nick Clifton  <nickc@redhat.com>

	* readelf.c (display_debug_lines): Fix typo in error message.

Index: binutils/readelf.c
===================================================================
RCS file: /cvs/src/src/binutils/readelf.c,v
retrieving revision 1.261
diff -c -3 -p -r1.261 readelf.c
*** binutils/readelf.c	26 Oct 2004 16:05:40 -0000	1.261
--- binutils/readelf.c	2 Nov 2004 09:53:36 -0000
*************** display_debug_lines (Elf_Internal_Shdr *
*** 6875,6881 ****
  	 with this block of line number information.  */
        if (comp_unit >= num_debug_line_pointer_sizes)
  	{
! 	  error (_("Not enough comp units for .debug_lines section\n"));
  	  return 0;
  	}
        else
--- 6875,6881 ----
  	 with this block of line number information.  */
        if (comp_unit >= num_debug_line_pointer_sizes)
  	{
! 	  error (_("Not enough comp units for .debug_line section\n"));
  	  return 0;
  	}
        else
 


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