diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2020-02-12 21:49:26 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2020-02-12 21:49:26 +0300 |
commit | d607470c3ce28c13ec3f55971803752446ff7387 (patch) | |
tree | 3c07240a5f201e6ce5af78bc0ef1b6a5dda00c23 /libbuild2/utility.cxx | |
parent | 0b95ca508ed4d664721f41dccda6b49e87941d00 (diff) |
Adapt to renaming butl::fdnull() to fdopen_null()
Diffstat (limited to 'libbuild2/utility.cxx')
-rw-r--r-- | libbuild2/utility.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libbuild2/utility.cxx b/libbuild2/utility.cxx index faffd66..3b4b94f 100644 --- a/libbuild2/utility.cxx +++ b/libbuild2/utility.cxx @@ -327,11 +327,11 @@ namespace build2 } auto_fd - open_dev_null () + open_null () { try { - return fdnull (); + return fdopen_null (); } catch (const io_error& e) { |