summaryrefslogtreecommitdiffstats
path: root/src/subprocess-posix.cc
diff options
context:
space:
mode:
authorNico Weber <thakis@chromium.org>2014-05-18 00:20:20 (GMT)
committerNico Weber <thakis@chromium.org>2014-05-18 00:20:20 (GMT)
commitb0ada0efd9ee1d80d38c781fa15d73bece4a3d69 (patch)
treefb80ed9afefe1921d6ad170ce41bfa4908c06933 /src/subprocess-posix.cc
parentc246b586a4191d8eca21761b15466b047008489f (diff)
downloadNinja-b0ada0efd9ee1d80d38c781fa15d73bece4a3d69.zip
Ninja-b0ada0efd9ee1d80d38c781fa15d73bece4a3d69.tar.gz
Ninja-b0ada0efd9ee1d80d38c781fa15d73bece4a3d69.tar.bz2
win console wip: Fix comments based on review feedback.
Diffstat (limited to 'src/subprocess-posix.cc')
-rw-r--r--src/subprocess-posix.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/subprocess-posix.cc b/src/subprocess-posix.cc
index 6e4b47c..743e406 100644
--- a/src/subprocess-posix.cc
+++ b/src/subprocess-posix.cc
@@ -85,7 +85,7 @@ bool Subprocess::Start(SubprocessSet* set, const string& command) {
error_pipe = 2;
close(output_pipe[1]);
}
- // In the console case, child_pipe is still inherited by the child and
+ // In the console case, output_pipe is still inherited by the child and
// closed when the subprocess finishes, which then notifies ninja.
execl("/bin/sh", "/bin/sh", "-c", command.c_str(), (char *) NULL);