diff options
Diffstat (limited to 'src/cstore/unionfs/cstore-unionfs.hpp')
-rw-r--r-- | src/cstore/unionfs/cstore-unionfs.hpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/cstore/unionfs/cstore-unionfs.hpp b/src/cstore/unionfs/cstore-unionfs.hpp index fa504ab..95c2b63 100644 --- a/src/cstore/unionfs/cstore-unionfs.hpp +++ b/src/cstore/unionfs/cstore-unionfs.hpp @@ -291,7 +291,8 @@ private: // boost fs operations wrappers bool b_fs_get_file_status(const char *path, b_fs::file_status& fs) { b_s::error_code ec; - fs = b_fs::detail::status_api(path, ec); + b_s::error_code* p_ec = &ec; + fs = b_fs::detail::status(path, p_ec); return (!ec); }; bool path_exists(const char *path); |