]> git.ipfire.org Git - thirdparty/ccache.git/commitdiff
Whitespace cleanup
authorJoel Rosdahl <joel@rosdahl.net>
Sun, 7 Dec 2014 15:45:45 +0000 (16:45 +0100)
committerJoel Rosdahl <joel@rosdahl.net>
Sun, 7 Dec 2014 15:45:45 +0000 (16:45 +0100)
ccache.c
stats.c

index 9e2f4d81fa177030fd7c581b0ab2755bac56b8f0..213612a054c6ed904e258b21069cd9497a8f8b2e 100644 (file)
--- a/ccache.c
+++ b/ccache.c
@@ -291,8 +291,8 @@ clean_up_pending_tmp_files(void)
        while (p) {
                tmp_unlink(p->path);
                p = p->next;
-               /* Leak p->path and p here because clean_up_pending_tmp_files needs to be signal
-                * safe. */
+               /* Leak p->path and p here because clean_up_pending_tmp_files needs to be
+                * signal safe. */
        }
 }
 
@@ -2202,7 +2202,8 @@ cc_process_args(struct args *args, struct args **preprocessor_args,
        output_is_precompiled_header =
                actual_language && strstr(actual_language, "-header");
 
-       if (output_is_precompiled_header && !(conf->sloppiness & SLOPPY_PCH_DEFINES)) {
+       if (output_is_precompiled_header
+           && !(conf->sloppiness & SLOPPY_PCH_DEFINES)) {
                cc_log("You have to specify \"pch_defines,time_macros\" sloppiness when"
                       " creating precompiled headers");
                stats_update(STATS_CANTUSEPCH);
diff --git a/stats.c b/stats.c
index 71fbb7af6af14b554bef7dd65836e8df9e56a542..aef628f9f1a6db6001c71b216c465777e0f17691 100644 (file)
--- a/stats.c
+++ b/stats.c
@@ -373,7 +373,8 @@ stats_zero(void)
 
 /* Get the per directory limits */
 void
-stats_get_obsolete_limits(const char *dir, unsigned *maxfiles, uint64_t *maxsize)
+stats_get_obsolete_limits(const char *dir, unsigned *maxfiles,
+                          uint64_t *maxsize)
 {
        struct counters *counters = counters_init(STATS_END);
        char *sname = format("%s/stats", dir);