diff options
author | Alan Modra <amodra@gmail.com> | 2000-04-03 14:10:05 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2000-04-03 14:10:05 +0000 |
commit | c20f4f8c21dcede76fe50dc3e19f5e8056232b94 (patch) | |
tree | cd6ff2baedb42d32c8f18a52f26431f88c8e9ed0 /gas/gasp.c | |
parent | 7876dd4328a3270de573c089669cbf8b008304fd (diff) | |
download | binutils-gdb-c20f4f8c21dcede76fe50dc3e19f5e8056232b94.tar.gz |
Move bug report string to one place.
Diffstat (limited to 'gas/gasp.c')
-rw-r--r-- | gas/gasp.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gas/gasp.c b/gas/gasp.c index b35a4ae57c1..dcceccf5153 100644 --- a/gas/gasp.c +++ b/gas/gasp.c @@ -50,6 +50,7 @@ suitable for gas to consume. */ #include "config.h" +#include "bin-bugs.h" #include <stdio.h> #include <string.h> @@ -3550,7 +3551,7 @@ Usage: %s \n\ [-Ipath] add to include path list\n\ [in-file]\n")); if (status == 0) - printf (_("\nReport bugs to bug-gnu-utils@gnu.org\n")); + printf (REPORT_BUGS_TO); exit (status); } |