diff options
author | Nick Clifton <nickc@redhat.com> | 2016-12-06 15:34:33 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2016-12-06 15:34:33 +0000 |
commit | 5eecd8621b955fb99860fc1b0d87074071f42f72 (patch) | |
tree | 3961ee1769a358e9e6db72f27c2822bed9216857 /gas | |
parent | 005304aae36522a90bbe169faea36db559d0f3d6 (diff) | |
download | gdb-5eecd8621b955fb99860fc1b0d87074071f42f72.zip gdb-5eecd8621b955fb99860fc1b0d87074071f42f72.tar.gz gdb-5eecd8621b955fb99860fc1b0d87074071f42f72.tar.bz2 |
fix typo
Diffstat (limited to 'gas')
-rw-r--r-- | gas/read.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 { |