summaryrefslogtreecommitdiff
path: root/gas/read.c
diff options
context:
space:
mode:
authorNick Clifton <nickc@redhat.com>2016-12-06 15:34:33 +0000
committerNick Clifton <nickc@redhat.com>2016-12-06 15:34:33 +0000
commit5eecd8621b955fb99860fc1b0d87074071f42f72 (patch)
tree3961ee1769a358e9e6db72f27c2822bed9216857 /gas/read.c
parent005304aae36522a90bbe169faea36db559d0f3d6 (diff)
downloadbinutils-gdb-5eecd8621b955fb99860fc1b0d87074071f42f72.tar.gz
fix typo
Diffstat (limited to 'gas/read.c')
-rw-r--r--gas/read.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gas/read.c b/gas/read.c
index 08b8846f151..9d35766a6a9 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
{