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 'programs')
-rw-r--r--programs/illegal-codepoints/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/programs/illegal-codepoints/main.cpp b/programs/illegal-codepoints/main.cpp
index 0b75f1c4..47819168 100644
--- a/programs/illegal-codepoints/main.cpp
+++ b/programs/illegal-codepoints/main.cpp
@@ -6146,7 +6146,7 @@ int main()
buffer[1] = (llfio::filesystem::path::value_type) n;
buffer[2] = 'z';
buffer[3] = 0;
- llfio::path_view leaf(buffer, 3, true);
+ llfio::path_view leaf(buffer, 3, llfio::path_view::zero_terminated);
auto h = llfio::file(testdir, leaf, llfio::file_handle::mode::write, llfio::file_handle::creation::if_needed);
if(h)
{