diff options
author | Nick Clifton <nickc@redhat.com> | 2010-10-28 14:11:29 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2010-10-28 14:11:29 +0000 |
commit | 3a728a9c278afe34ae3fcd40159f2e17c535a171 (patch) | |
tree | 0def3477bfc2b6899a9f7796ada15db8d8974564 /binutils | |
parent | af47889861165b7f939b1279df804d5cb28f0005 (diff) | |
download | gdb-3a728a9c278afe34ae3fcd40159f2e17c535a171.zip gdb-3a728a9c278afe34ae3fcd40159f2e17c535a171.tar.gz gdb-3a728a9c278afe34ae3fcd40159f2e17c535a171.tar.bz2 |
PR binutils/12058
* ar.c (usage): Remove spurious 's' from list of accepted command
letters.
Diffstat (limited to 'binutils')
-rw-r--r-- | binutils/ChangeLog | 6 | ||||
-rw-r--r-- | binutils/ar.c | 4 |
2 files changed, 8 insertions, 2 deletions
diff --git a/binutils/ChangeLog b/binutils/ChangeLog index b094ac6..eb2f14b 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,3 +1,9 @@ +2010-10-28 Nick Clifton <nickc@redhat.com> + + PR binutils/12058 + * ar.c (usage): Remove spurious 's' from list of accepted command + letters. + 2010-10-28 Alan Modra <amodra@gmail.com> * readelf.c (is_32bit_abs_reloc): Support i960 and microblaze. diff --git a/binutils/ar.c b/binutils/ar.c index 4c765ca..c2e6f4c 100644 --- a/binutils/ar.c +++ b/binutils/ar.c @@ -230,9 +230,9 @@ usage (int help) /* xgettext:c-format */ const char * command_line = #if BFD_SUPPORTS_PLUGINS - _("Usage: %s [emulation options] [--plugin <name>] [-]{dmpqrstx}[abcfilNoPsSuvV] [member-name] [count] archive-file file...\n"); + _("Usage: %s [emulation options] [--plugin <name>] [-]{dmpqrtx}[abcfilNoPsSuvV] [member-name] [count] archive-file file...\n"); #else - _("Usage: %s [emulation options] [-]{dmpqrstx}[abcfilNoPsSuvV] [member-name] [count] archive-file file...\n"); + _("Usage: %s [emulation options] [-]{dmpqrtx}[abcfilNoPsSuvV] [member-name] [count] archive-file file...\n"); #endif fprintf (s, command_line, program_name); |