summaryrefslogtreecommitdiff
path: root/main.cc
diff options
context:
space:
mode:
Diffstat (limited to 'main.cc')
-rw-r--r--main.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/main.cc b/main.cc
index 387524ba..705ee3af 100644
--- a/main.cc
+++ b/main.cc
@@ -389,7 +389,8 @@ int parse_and_report(config_t& config, int argc, char * argv[], char * envp[])
// Write out the binary cache, if need be
- if (config.use_cache && config.cache_dirty && ! config.cache_file.empty()) {
+ if (config.use_cache && config.cache_dirty &&
+ ! config.cache_file.empty()) {
TRACE_PUSH(binary_cache, "Writing journal file");
std::ofstream stream(config.cache_file.c_str());