From: Ian Lance Taylor Date: Fri, 8 Sep 1995 04:30:24 +0000 (+0000) Subject: * gasp.c (show_usage): Put program_name argument in first fprintf, X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=1359db1b8cf5a21bdce0bcb04997af45bda9a9b5;p=binutils-gdb.git * gasp.c (show_usage): Put program_name argument in first fprintf, not second. --- diff --git a/gas/ChangeLog b/gas/ChangeLog index 676aadcb3dc..2d3892400d4 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,8 @@ +Fri Sep 8 00:27:46 1995 Ian Lance Taylor + + * gasp.c (show_usage): Put program_name argument in first fprintf, + not second. + Thu Sep 7 12:33:58 1995 Ian Lance Taylor * expr.c (operand): Handle 08 and 09 in MRI mode. diff --git a/gas/gasp.c b/gas/gasp.c index bd6ea2d5628..5ea70b682b0 100644 --- a/gas/gasp.c +++ b/gas/gasp.c @@ -3500,14 +3500,14 @@ Usage: %s \n\ [-h] [--help] print this message\n\ [-M] [--mri] enter MRI compatibility mode\n\ [-o out] [--output out] set the output file\n\ - [-p] [--print] print line numbers\n"); + [-p] [--print] print line numbers\n", program_name); fprintf (file, "\ [-s] [--copysource] copy source through as comments \n\ [-u] [--unreasonable] allow unreasonable nesting\n\ [-v] [--version] print the program version\n\ [-Dname=value] create preprocessor variable called name, with value\n\ [-Ipath] add to include path list\n\ - [in-file]\n", program_name); + [in-file]\n"); exit (status); }