diff options
author | Nick Clifton <nickc@redhat.com> | 2009-06-19 15:05:23 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2009-06-19 15:05:23 +0000 |
commit | d46fc8e83803954783e4791a975c78859b3d18de (patch) | |
tree | 2bb923545a3d5889594a01d30cc1f7bac19e3030 /binutils/nm.c | |
parent | 8e54f21078b822c1c36171e378244022e5715fe6 (diff) | |
download | gdb-d46fc8e83803954783e4791a975c78859b3d18de.zip gdb-d46fc8e83803954783e4791a975c78859b3d18de.tar.gz gdb-d46fc8e83803954783e4791a975c78859b3d18de.tar.bz2 |
* ar.c (usage): Do not use #ifdef inside _("...).
* nm.c (usage): Likewise.
Diffstat (limited to 'binutils/nm.c')
-rw-r--r-- | binutils/nm.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/binutils/nm.c b/binutils/nm.c index 51f67d1..7ca691d 100644 --- a/binutils/nm.c +++ b/binutils/nm.c @@ -240,11 +240,13 @@ usage (FILE *stream, int status) -o Same as -A\n\ -p, --no-sort Do not sort the symbols\n\ -P, --portability Same as --format=posix\n\ - -r, --reverse-sort Reverse the sense of the sort\n" + -r, --reverse-sort Reverse the sense of the sort\n")); #if BFD_SUPPORTS_PLUGINS -" --plugin NAME Load the specified plugin\n" + fprintf (stream, _("\ + --plugin NAME Load the specified plugin\n")); #endif -" -S, --print-size Print size of defined symbols\n\ + fprintf (stream, _("\ + -S, --print-size Print size of defined symbols\n \ -s, --print-armap Include index for symbols from archive members\n\ --size-sort Sort symbols by size\n\ --special-syms Include special symbols in the output\n\ |