From 0ea7e381d4a0ac41c1de728675f89cea0093b8cb Mon Sep 17 00:00:00 2001 From: Joel Rosdahl Date: Wed, 1 May 2019 14:25:16 +0200 Subject: [PATCH] Tweak code style --- src/ccache.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/ccache.c b/src/ccache.c index 6f9d4b496..2d2a96eb4 100644 --- a/src/ccache.c +++ b/src/ccache.c @@ -1519,8 +1519,8 @@ to_cache(struct args *args, struct hash *depend_mode_hash) update_cached_result_globals(object_hash); } - bool produce_dep_file = generating_dependencies && - !str_eq(output_dep, "/dev/null"); + bool produce_dep_file = + generating_dependencies && !str_eq(output_dep, "/dev/null"); if (produce_dep_file) { use_relative_paths_in_depfile(output_dep); @@ -2279,8 +2279,8 @@ from_cache(enum fromcache_call_mode mode, bool put_object_in_manifest) // (If mode != FROMCACHE_DIRECT_MODE, the dependency file is created by gcc.) bool produce_dep_file = - generating_dependencies && mode == FROMCACHE_DIRECT_MODE && - !str_eq(output_dep, "/dev/null"); + generating_dependencies && mode == FROMCACHE_DIRECT_MODE + && !str_eq(output_dep, "/dev/null"); MTR_BEGIN("file", "file_get"); @@ -3849,8 +3849,8 @@ ccache(int argc, char *argv[]) MTR_END("main", "process_args"); if (conf->depend_mode - && (!generating_dependencies || str_eq(output_dep, "/dev/null") || - !conf->run_second_cpp || conf->unify)) { + && (!generating_dependencies || str_eq(output_dep, "/dev/null") + || !conf->run_second_cpp || conf->unify)) { cc_log("Disabling depend mode"); conf->depend_mode = false; } -- 2.47.2