Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/windirstat/llfio.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'include/llfio/v2.0/detail/impl/posix/path_handle.ipp')
-rw-r--r--include/llfio/v2.0/detail/impl/posix/path_handle.ipp2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llfio/v2.0/detail/impl/posix/path_handle.ipp b/include/llfio/v2.0/detail/impl/posix/path_handle.ipp
index 1c48d65e..ae7928a8 100644
--- a/include/llfio/v2.0/detail/impl/posix/path_handle.ipp
+++ b/include/llfio/v2.0/detail/impl/posix/path_handle.ipp
@@ -42,7 +42,7 @@ result<path_handle> path_handle::path(const path_handle &base, path_handle::path
// Linux provides this extension opening a super light weight fd to just an anchor on the filing system
attribs |= O_PATH;
#endif
- path_view::c_str zpath(path);
+ path_view::c_str<> zpath(path);
if(base.is_valid())
{
nativeh.fd = ::openat(base.native_handle().fd, zpath.buffer, attribs);