aboutsummaryrefslogtreecommitdiff
path: root/bbot/utility.hxx
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2020-02-12 22:30:22 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2020-02-12 22:30:22 +0300
commit99e984c8d42d070b83ea27bd10dee8f195b5149b (patch)
treea673fa26d01c0f16e5df50002da4e49082a227cc /bbot/utility.hxx
parent7d06c193ad79cec3d810be1811929cacc5ad108e (diff)
Adapt to renaming butl::fdnull() to fdopen_null()
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).