summaryrefslogtreecommitdiffstats
path: root/src/graph.cc
diff options
context:
space:
mode:
authorEvan Martin <martine@danga.com>2012-12-29 20:02:16 (GMT)
committerEvan Martin <martine@danga.com>2012-12-29 20:33:15 (GMT)
commit3249938cdf574058a066436aea06b0541ded6958 (patch)
tree1dd2f33756337463972fdd21f20ef613ebbb2914 /src/graph.cc
parent7d41c2f521e27a3c2891e6f1c8da42f0f6f3c266 (diff)
downloadNinja-3249938cdf574058a066436aea06b0541ded6958.zip
Ninja-3249938cdf574058a066436aea06b0541ded6958.tar.gz
Ninja-3249938cdf574058a066436aea06b0541ded6958.tar.bz2
wrap some overlong lines
Diffstat (limited to 'src/graph.cc')
-rw-r--r--src/graph.cc7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/graph.cc b/src/graph.cc
index f8ceda9..f9b9c6f 100644
--- a/src/graph.cc
+++ b/src/graph.cc
@@ -145,9 +145,10 @@ bool DependencyScan::RecomputeOutputDirty(Edge* edge,
if (edge->rule_->restat() && build_log() &&
(entry = build_log()->LookupByOutput(output->path()))) {
if (entry->restat_mtime < most_recent_stamp) {
- EXPLAIN("restat of output %s older than most recent input %s (%d vs %d)",
- output->path().c_str(), most_recent_input->path().c_str(),
- entry->restat_mtime, most_recent_stamp);
+ EXPLAIN("restat of output %s older than most recent input %s "
+ "(%d vs %d)",
+ output->path().c_str(), most_recent_input->path().c_str(),
+ entry->restat_mtime, most_recent_stamp);
return true;
}
} else {