]> git.ipfire.org Git - thirdparty/ccache.git/commitdiff
Print "ccache: error: " instead of "ccache: FATAL: " for fatal ccache errors
authorJoel Rosdahl <joel@rosdahl.net>
Sat, 14 May 2011 20:52:28 +0000 (22:52 +0200)
committerJoel Rosdahl <joel@rosdahl.net>
Mon, 30 May 2011 19:35:54 +0000 (21:35 +0200)
util.c

diff --git a/util.c b/util.c
index 67aa431435f1f3ae795ae7962cd3fec7dc61361a..3a32411b7f522f9d477ecbf3802d071e18bbc424 100644 (file)
--- 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);
 }