From: Joel Rosdahl Date: Sat, 14 May 2011 20:52:28 +0000 (+0200) Subject: Print "ccache: error: " instead of "ccache: FATAL: " for fatal ccache errors X-Git-Tag: v3.2~243 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=0d940af4209cbd6db423b71339a5529686c37dc1;p=thirdparty%2Fccache.git Print "ccache: error: " instead of "ccache: FATAL: " for fatal ccache errors --- diff --git a/util.c b/util.c index 67aa43143..3a32411b7 100644 --- a/util.c +++ b/util.c @@ -144,7 +144,7 @@ fatal(const char *format, ...) va_end(ap); cc_log("FATAL: %s", msg); - fprintf(stderr, "ccache: FATAL: %s\n", msg); + fprintf(stderr, "ccache: error: %s\n", msg); exit(1); }