2009-02-05 Chris Demetriou * errors.cc (Errors::fatal, Errors::error): When printing (normal and fatal) error messages, print "error: " before the formatted message. Index: errors.cc =================================================================== RCS file: /cvs/src/src/gold/errors.cc,v retrieving revision 1.7 diff -u -u -p -r1.7 errors.cc --- errors.cc 17 Apr 2008 22:45:47 -0000 1.7 +++ errors.cc 5 Feb 2009 05:30:59 -0000 @@ -80,7 +80,7 @@ Errors::increment_counter(int *counter) void Errors::fatal(const char* format, va_list args) { - fprintf(stderr, "%s: ", this->program_name_); + fprintf(stderr, _("%s: error: "), this->program_name_); vfprintf(stderr, format, args); fputc('\n', stderr); gold_exit(false); @@ -91,7 +91,7 @@ Errors::fatal(const char* format, va_lis void Errors::error(const char* format, va_list args) { - fprintf(stderr, "%s: ", this->program_name_); + fprintf(stderr, _("%s: error: "), this->program_name_); vfprintf(stderr, format, args); fputc('\n', stderr);