aboutsummaryrefslogtreecommitdiff
path: root/bdep/utility.cxx
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2020-02-12 22:19:28 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2020-02-12 22:19:28 +0300
commit6a971cb441dbeafa9d51af5ee873bf71c843967a (patch)
tree294e3f0c2cd0e536b4c22d5c0b29e5fa9264e0ee /bdep/utility.cxx
parentec3d77effb6afbed1bfd082e9717b3ce1094ac8f (diff)
Adapt to renaming butl::fdnull() to fdopen_null()
Diffstat (limited to 'bdep/utility.cxx')
-rw-r--r--bdep/utility.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/bdep/utility.cxx b/bdep/utility.cxx
index 4e3649e..8821790 100644
--- a/bdep/utility.cxx
+++ b/bdep/utility.cxx
@@ -250,11 +250,11 @@ namespace bdep
}
auto_fd
- open_dev_null ()
+ open_null ()
{
try
{
- return fdnull ();
+ return fdopen_null ();
}
catch (const io_error& e)
{