From: Joel Rosdahl Date: Sun, 7 Dec 2014 15:45:45 +0000 (+0100) Subject: Whitespace cleanup X-Git-Tag: v3.2.1~4 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4ad86e70203403bd1c2afa5374bd31476952cad8;p=thirdparty%2Fccache.git Whitespace cleanup --- diff --git a/ccache.c b/ccache.c index 9e2f4d81f..213612a05 100644 --- 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 71fbb7af6..aef628f9f 100644 --- 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);