]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
binutils/
authorNathan Sidwell <nathan@codesourcery.com>
Fri, 29 Sep 2006 12:25:31 +0000 (12:25 +0000)
committerNathan Sidwell <nathan@codesourcery.com>
Fri, 29 Sep 2006 12:25:31 +0000 (12:25 +0000)
* ar.c (usage): Pass s to list_supported_targets.
* cxxfilt.c (usage): Print bug url when giving help.

ChangeLog.csl
binutils/ar.c
binutils/cxxfilt.c

index 8fcce895bb89a89b89a7204b358a00d625c3c1b0..7c1b55f3de99e6f4a4af9a00615bdd556a8558e6 100644 (file)
@@ -1,3 +1,9 @@
+2006-09-29  Nathan Sidwell  <nathan@codesourcery.com>
+
+       binutils/
+       * ar.c (usage): Pass s to list_supported_targets.
+       * cxxfilt.c (usage): Print bug url when giving help.
+
 2006-09-28  Mark Shinwell  <shinwell@codesourcery.com>
 
        include/
index fe1c6402222d4166f373de729a0abb3d2d55b281..3b5123d9ab3bc2d315f83ac963e8b810aaa35b3a 100644 (file)
@@ -257,7 +257,7 @@ usage (int help)
   -V --version                 Print version information\n"));
     }
 
-  list_supported_targets (program_name, stderr);
+  list_supported_targets (program_name, s);
 
   if (help)
     fprintf (s, _("Report bugs to %s\n"), REPORT_BUGS_TO);
index a8ec43ba1180823fe4e65aa372ccb17e386be922..ee5d8e44db080d8f9c411b68775c860a0f55cdd9 100644 (file)
@@ -115,6 +115,8 @@ Options are:\n\
 Demangled names are displayed to stdout.\n\
 If a name cannot be demangled it is just echoed to stdout.\n\
 If no names are provided on the command line, stdin is read.\n");
+  if (status == 0)
+    fprintf (stream, _("Report bugs to %s.\n"), REPORT_BUGS_TO);
   exit (status);
 }