aboutsummaryrefslogtreecommitdiff
path: root/gas
diff options
context:
space:
mode:
authorIan Lance Taylor <ian@airs.com>1995-09-08 04:30:24 +0000
committerIan Lance Taylor <ian@airs.com>1995-09-08 04:30:24 +0000
commit1359db1b8cf5a21bdce0bcb04997af45bda9a9b5 (patch)
treeec139cd68fc880d6d884c86def7b8f6cd91cb0df /gas
parentebf6d5e63d2b09dba323a342fc56ff8705c30aee (diff)
downloadfsf-binutils-gdb-1359db1b8cf5a21bdce0bcb04997af45bda9a9b5.zip
fsf-binutils-gdb-1359db1b8cf5a21bdce0bcb04997af45bda9a9b5.tar.gz
fsf-binutils-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/ChangeLog5
-rw-r--r--gas/gasp.c4
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.
diff --git a/gas/gasp.c b/gas/gasp.c
index bd6ea2d..5ea70b6 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);
}