aboutsummaryrefslogtreecommitdiff
path: root/bbot/utility.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'bbot/utility.hxx')
-rw-r--r--bbot/utility.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/bbot/utility.hxx b/bbot/utility.hxx
index ebe9ce8..4545bd3 100644
--- a/bbot/utility.hxx
+++ b/bbot/utility.hxx
@@ -93,7 +93,7 @@ namespace bbot
inline void
run (tracer& t, const P& p, A&&... a)
{
- run_io (t, butl::fdnull (), 2, 2, p, forward<A> (a)...);
+ run_io (t, butl::fdopen_null (), 2, 2, p, forward<A> (a)...);
}
template <typename P, typename... A>
@@ -101,7 +101,7 @@ namespace bbot
run_exit (tracer& t, const P& p, A&&... a)
{
return run_io_exit (
- t, butl::fdnull (), 2, 2, p, forward<A> (a)...);
+ t, butl::fdopen_null (), 2, 2, p, forward<A> (a)...);
}
// The curl process wrapper (command line tracing, etc).