From 99e984c8d42d070b83ea27bd10dee8f195b5149b Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Wed, 12 Feb 2020 22:30:22 +0300 Subject: Adapt to renaming butl::fdnull() to fdopen_null() --- bbot/utility.hxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'bbot/utility.hxx') 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)...); + run_io (t, butl::fdopen_null (), 2, 2, p, forward (a)...); } template @@ -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)...); + t, butl::fdopen_null (), 2, 2, p, forward (a)...); } // The curl process wrapper (command line tracing, etc). -- cgit v1.1