This is the mail archive of the binutils-cvs@sourceware.org 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]

[binutils-gdb] fix typo


https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=5eecd8621b955fb99860fc1b0d87074071f42f72

commit 5eecd8621b955fb99860fc1b0d87074071f42f72
Author: Nick Clifton <nickc@redhat.com>
Date:   Tue Dec 6 15:34:33 2016 +0000

    fix typo

Diff:
---
 gas/read.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gas/read.c b/gas/read.c
index 08b8846..9d35766 100644
--- a/gas/read.c
+++ b/gas/read.c
@@ -3397,7 +3397,7 @@ s_space (int mult)
 	  /* PR 20901: Check for excessive values.
 	     FIXME: 1<<10 is an arbitrary limit.  Maybe use maxpagesize instead ?  */
 	  if (exp.X_add_number < 0 || exp.X_add_number > (1 << 10))
-	    as_bad (_("size value for s_space directive too large: %lx"),
+	    as_bad (_("size value for space directive too large: %lx"),
 		    (long) exp.X_add_number);
 	  else
 	    {


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