diff options
Diffstat (limited to 'gprof')
-rw-r--r-- | gprof/ChangeLog | 7 | ||||
-rw-r--r-- | gprof/gprof.c | 2 | ||||
-rw-r--r-- | gprof/gprof.h | 1 |
3 files changed, 8 insertions, 2 deletions
diff --git a/gprof/ChangeLog b/gprof/ChangeLog index c4742ff..5eb13e8 100644 --- a/gprof/ChangeLog +++ b/gprof/ChangeLog @@ -1,7 +1,12 @@ +2000-04-01 Alan Modra <alan@linuxcare.com.au> + + * gprof.h: #include "bin-bugs.h". + * gprof.c (usage): Use REPORT_BUGS_TO. + 2000-03-31 Alan Modra <alan@linuxcare.com.au> * symtab.c (symtab_finalize): Don't use post-increment on - structure copy to work around a ppc gcc bug. + structure copy, to work around a ppc gcc bug. 1999-09-29 Mark Kettenis <kettenis@gnu.org> diff --git a/gprof/gprof.c b/gprof/gprof.c index cb90487..82440a8 100644 --- a/gprof/gprof.c +++ b/gprof/gprof.c @@ -157,7 +157,7 @@ Usage: %s [-[abcDhilLsTvwxyz]] [-[ACeEfFJnNOpPqQZ][name]] [-I dirs]\n\ [image-file] [profile-file...]\n"), whoami); if (status == 0) - fprintf (stream, _("Report bugs to bug-gnu-utils@gnu.org\n")); + fprintf (stream, REPORT_BUGS_TO); done (status); } diff --git a/gprof/gprof.h b/gprof/gprof.h index 8f62aee..a144bf4 100644 --- a/gprof/gprof.h +++ b/gprof/gprof.h @@ -76,6 +76,7 @@ # define N_(String) (String) #endif +#include "bin-bugs.h" /* * These may already be defined on some systems. We could probably |