diff options
author | Ian Lance Taylor <ian@airs.com> | 1995-09-08 04:30:24 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1995-09-08 04:30:24 +0000 |
commit | 1359db1b8cf5a21bdce0bcb04997af45bda9a9b5 (patch) | |
tree | ec139cd68fc880d6d884c86def7b8f6cd91cb0df /gas | |
parent | ebf6d5e63d2b09dba323a342fc56ff8705c30aee (diff) | |
download | gdb-1359db1b8cf5a21bdce0bcb04997af45bda9a9b5.zip gdb-1359db1b8cf5a21bdce0bcb04997af45bda9a9b5.tar.gz gdb-1359db1b8cf5a21bdce0bcb04997af45bda9a9b5.tar.bz2 |
* gasp.c (show_usage): Put program_name argument in first fprintf,
not second.
Diffstat (limited to 'gas')
-rw-r--r-- | gas/ChangeLog | 5 | ||||
-rw-r--r-- | gas/gasp.c | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index 676aadc..2d38924 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,8 @@ +Fri Sep 8 00:27:46 1995 Ian Lance Taylor <ian@cygnus.com> + + * gasp.c (show_usage): Put program_name argument in first fprintf, + not second. + Thu Sep 7 12:33:58 1995 Ian Lance Taylor <ian@cygnus.com> * expr.c (operand): Handle 08 and 09 in MRI mode. @@ -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); } |