mirror of
https://github.com/feather-wallet/feather.git
synced 2024-12-23 03:59:29 +00:00
3b9412fece
Some checks are pending
ci/gh-actions/build / build-ubuntu-without-scanner (push) Waiting to run
ci/gh-actions/guix / cache-sources (push) Waiting to run
ci/gh-actions/guix / x86_64-w64-mingw32 (push) Blocked by required conditions
ci/gh-actions/guix / bundle-logs (push) Blocked by required conditions
ci/gh-actions/guix / x86_64-linux-gnu.no-tor-bundle (push) Blocked by required conditions
ci/gh-actions/guix / x86_64-linux-gnu.pack (push) Blocked by required conditions
ci/gh-actions/guix / x86_64-linux-gnu (push) Blocked by required conditions
ci/gh-actions/guix / x86_64-w64-mingw32.installer (push) Blocked by required conditions
ci/gh-actions/guix / aarch64-linux-gnu (push) Blocked by required conditions
ci/gh-actions/guix / arm-linux-gnueabihf (push) Blocked by required conditions
ci/gh-actions/guix / arm64-apple-darwin (push) Blocked by required conditions
ci/gh-actions/guix / i686-linux-gnu (push) Blocked by required conditions
ci/gh-actions/guix / riscv64-linux-gnu (push) Blocked by required conditions
ci/gh-actions/guix / x86_64-apple-darwin (push) Blocked by required conditions
13 lines
588 B
Diff
13 lines
588 B
Diff
diff --git a/libs/filesystem/src/directory.cpp b/libs/filesystem/src/directory.cpp
|
|
index 0cf5025..cd38e1b 100644
|
|
--- a/libs/filesystem/src/directory.cpp
|
|
+++ b/libs/filesystem/src/directory.cpp
|
|
@@ -279,7 +279,7 @@ inline system::error_code dir_itr_close(dir_itr_imp& imp) noexcept
|
|
// Obtains a file descriptor from the directory iterator
|
|
inline int dir_itr_fd(dir_itr_imp const& imp, system::error_code& ec)
|
|
{
|
|
- int fd = ::dirfd(static_cast< DIR* >(imp.handle));
|
|
+ int fd = dirfd(static_cast< DIR* >(imp.handle));
|
|
if (BOOST_UNLIKELY(fd < 0))
|
|
{
|
|
int err = errno;
|