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]

Fix typo in stabs.c warning message


Hi Guys,

  The patch below fixes a grammatical typo in the warning message I
  created in a previous patch.  Applied to mainline & branch.

Cheers
        Nick

2002-05-13  Nick Clifton  <nickc@cambridge.redhat.com>

	* stabs.c (s_stab_generic): Fix grammatically error in warning
	message.

Index: gas/stabs.c
===================================================================
RCS file: /cvs/src/src/gas/stabs.c,v
retrieving revision 1.17
diff -c -3 -p -w -r1.17 stabs.c
*** gas/stabs.c	11 May 2002 19:40:29 -0000	1.17
--- gas/stabs.c	13 May 2002 10:12:52 -0000
*************** s_stab_generic (what, stab_secname, stab
*** 245,251 ****
      /* This could happen for example with a source file with a huge
         number of lines.  The only cure is to use a different debug
         format, probably DWARF.  */
!     as_warn (_(".stab%c: description field '%x' too big, maybe you could a different debug format"),
  	     what, desc);
      
    if (what == 's' || what == 'n')
--- 245,251 ----
      /* This could happen for example with a source file with a huge
         number of lines.  The only cure is to use a different debug
         format, probably DWARF.  */
!     as_warn (_(".stab%c: description field '%x' too big, try a different debug format"),
  	     what, desc);
      
    if (what == 's' || what == 'n')


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