]> git.ipfire.org Git - thirdparty/ccache.git/commitdiff
Move up "can't use precompiled header" stat so that cache size is at end
authorJoel Rosdahl <joel@rosdahl.net>
Sat, 21 May 2011 17:18:46 +0000 (19:18 +0200)
committerJoel Rosdahl <joel@rosdahl.net>
Sat, 21 May 2011 17:18:46 +0000 (19:18 +0200)
stats.c

diff --git a/stats.c b/stats.c
index f6f5c1f3f64f876b544e78468e1e33bb5fcf59d5..5d41d74bf8a8528c916da708ba89dd5ffa31040f 100644 (file)
--- 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 }
 };