* gasp.c (show_usage): Put program_name argument in first fprintf,
authorIan Lance Taylor <ian@airs.com>
Fri, 8 Sep 1995 04:30:24 +0000 (04:30 +0000)
committerIan Lance Taylor <ian@airs.com>
Fri, 8 Sep 1995 04:30:24 +0000 (04:30 +0000)
not second.

gas/ChangeLog
gas/gasp.c

index 676aadcb3dc698928d7c6dd03f94ff258eb2ce34..2d3892400d47606fbe0918fadcbd08e15c787e9a 100644 (file)
@@ -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.
index bd6ea2d56287096c005d2bbec0691bb19bd33cbb..5ea70b682b012ca95bd1276ee0f336fb557b1b90 100644 (file)
@@ -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);
 }