summaryrefslogtreecommitdiff
path: root/src/stream.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/stream.cc')
-rw-r--r--src/stream.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/stream.cc b/src/stream.cc
index c7fd58fa..e39b74e0 100644
--- a/src/stream.cc
+++ b/src/stream.cc
@@ -100,7 +100,8 @@ namespace {
}
else { // parent
close(pfd[0]);
- *os = new boost::fdostream(pfd[1]);
+ typedef iostreams::stream<iostreams::file_descriptor_sink> fdstream;
+ *os = new fdstream(pfd[1]);
}
return pfd[1];
}