From: Joel Rosdahl Date: Sat, 21 May 2011 17:18:46 +0000 (+0200) Subject: Move up "can't use precompiled header" stat so that cache size is at end X-Git-Tag: v3.1.5~2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=a8e6d73c99592dfbb964da88c97b4efa4bddb22a;p=thirdparty%2Fccache.git Move up "can't use precompiled header" stat so that cache size is at end --- diff --git a/stats.c b/stats.c index f6f5c1f3f..5d41d74bf 100644 --- a/stats.c +++ b/stats.c @@ -68,6 +68,7 @@ static struct { { STATS_STATUS, "compile failed ", NULL, 0 }, { STATS_ERROR, "ccache internal error ", NULL, 0 }, { STATS_PREPROCESSOR, "preprocessor error ", NULL, 0 }, + { STATS_CANTUSEPCH, "can't use precompiled header ", NULL, 0 }, { STATS_COMPILER, "couldn't find the compiler ", NULL, 0 }, { STATS_MISSING, "cache file missing ", NULL, 0 }, { STATS_ARGS, "bad compiler arguments ", NULL, 0 }, @@ -83,7 +84,6 @@ static struct { { STATS_TOTALSIZE, "cache size ", display_size , FLAG_NOZERO|FLAG_ALWAYS }, { STATS_MAXFILES, "max files ", NULL, FLAG_NOZERO }, { STATS_MAXSIZE, "max cache size ", display_size, FLAG_NOZERO }, - { STATS_CANTUSEPCH, "can't use precompiled header ", NULL, 0 }, { STATS_NONE, NULL, NULL, 0 } };