summaryrefslogtreecommitdiff
path: root/src/stream.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/stream.cc')
-rw-r--r--src/stream.cc2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/stream.cc b/src/stream.cc
index cf85f2d4..2c255108 100644
--- a/src/stream.cc
+++ b/src/stream.cc
@@ -72,8 +72,6 @@ namespace {
throw std::logic_error("Failed to fork child process");
}
else if (status == 0) { // child
- const char *arg0;
-
// Duplicate pipe's reading end into stdin
status = dup2(pfd[0], STDIN_FILENO);
if (status == -1)