summaryrefslogtreecommitdiffstats
path: root/src/build.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/build.cc')
-rw-r--r--src/build.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/build.cc b/src/build.cc
index 03c692c..913bc31 100644
--- a/src/build.cc
+++ b/src/build.cc
@@ -291,7 +291,7 @@ bool RealCommandRunner::StartCommand(Edge* edge) {
string command = edge->EvaluateCommand();
Subprocess* subproc = new Subprocess;
subproc_to_edge_.insert(make_pair(subproc, edge));
- if (!subproc->Start(command))
+ if (!subproc->Start(&subprocs_, command))
return false;
subprocs_.Add(subproc);