diff options
author | Nick Clifton <nickc@redhat.com> | 2013-07-18 16:12:35 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2013-07-18 16:12:35 +0000 |
commit | faf786e66817bcfc5b6ead80cafe6acc3149df02 (patch) | |
tree | c5efcdbd1c2a420ce11e5463fda28abb4641b8a9 /binutils/ar.c | |
parent | 623cc2854011a4ffa83755d7ce9a9e078fa7ec80 (diff) | |
download | gdb-faf786e66817bcfc5b6ead80cafe6acc3149df02.zip gdb-faf786e66817bcfc5b6ead80cafe6acc3149df02.tar.gz gdb-faf786e66817bcfc5b6ead80cafe6acc3149df02.tar.bz2 |
* ar.c (usage): Fix C conformance issue.
* config/tc-i386-intel.c (i386_intel_operand): Fixed signed vs
unsigned comparison.
Diffstat (limited to 'binutils/ar.c')
-rw-r--r-- | binutils/ar.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/binutils/ar.c b/binutils/ar.c index c424038..af5694d 100644 --- a/binutils/ar.c +++ b/binutils/ar.c @@ -243,8 +243,6 @@ usage (int help) { FILE *s; - s = help ? stdout : stderr; - #if BFD_SUPPORTS_PLUGINS /* xgettext:c-format */ const char *command_line @@ -257,6 +255,8 @@ usage (int help) = _("Usage: %s [emulation options] [-]{dmpqrstx}[abcDfilMNoPsSTuvV]" " [member-name] [count] archive-file file...\n"); #endif + s = help ? stdout : stderr; + fprintf (s, command_line, program_name); /* xgettext:c-format */ |