diff options
author | Nick Clifton <nickc@redhat.com> | 2002-01-15 17:18:53 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2002-01-15 17:18:53 +0000 |
commit | 6364e0b4c2e5a7bd02ed3490b1ce4fcd7d7b4575 (patch) | |
tree | 570bc7f9223534a9fe57089bd532d5d5122ec94b /binutils/objcopy.c | |
parent | d7242108d7b130fb18fc591e5be389406fca526e (diff) | |
download | gdb-6364e0b4c2e5a7bd02ed3490b1ce4fcd7d7b4575.zip gdb-6364e0b4c2e5a7bd02ed3490b1ce4fcd7d7b4575.tar.gz gdb-6364e0b4c2e5a7bd02ed3490b1ce4fcd7d7b4575.tar.bz2 |
Refer to "options" not "switches"
Diffstat (limited to 'binutils/objcopy.c')
-rw-r--r-- | binutils/objcopy.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/binutils/objcopy.c b/binutils/objcopy.c index ddd0197..a56b7ec 100644 --- a/binutils/objcopy.c +++ b/binutils/objcopy.c @@ -360,8 +360,8 @@ copy_usage (stream, exit_status) FILE *stream; int exit_status; { - fprintf (stream, _("Usage: %s <switches> in-file [out-file]\n"), program_name); - fprintf (stream, _(" The switches are:\n")); + fprintf (stream, _("Usage: %s <options> in-file [out-file]\n"), program_name); + fprintf (stream, _(" The options are:\n")); fprintf (stream, _("\ -I --input-target <bfdname> Assume input file is in format <bfdname>\n\ -O --output-target <bfdname> Create an output file in format <bfdname>\n\ @@ -429,8 +429,8 @@ strip_usage (stream, exit_status) FILE *stream; int exit_status; { - fprintf (stream, _("Usage: %s <switches> in-file(s)\n"), program_name); - fprintf (stream, _(" The switches are:\n")); + fprintf (stream, _("Usage: %s <options> in-file(s)\n"), program_name); + fprintf (stream, _(" The options are:\n")); fprintf (stream, _("\ -I --input-target <bfdname> Assume input file is in format <bfdname>\n\ -O --output-target <bfdname> Create an output file in format <bfdname>\n\ |