diff options
author | xiphon <xiphon@protonmail.com> | 2020-09-20 13:57:44 +0000 |
---|---|---|
committer | xiphon <xiphon@protonmail.com> | 2020-09-20 13:57:44 +0000 |
commit | 4846743fdc34be85512fdead8458b6c889d6d85d (patch) | |
tree | d119898b9a7ea1558ee3352ce145593cb61e1893 /src | |
parent | Merge pull request #6819 (diff) | |
download | monero-4846743fdc34be85512fdead8458b6c889d6d85d.tar.xz |
daemon: Windows - fix FAT32 warning, trailing backslash is required
Diffstat (limited to 'src')
-rw-r--r-- | src/daemon/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/daemon/main.cpp b/src/daemon/main.cpp index f2ae6dcc3..3db8fbcb4 100644 --- a/src/daemon/main.cpp +++ b/src/daemon/main.cpp @@ -249,7 +249,7 @@ int main(int argc, char const * argv[]) command_line::get_arg(vm, cryptonote::arg_data_dir)); #ifdef WIN32 - if (isFat32(data_dir.root_name().c_str())) + if (isFat32(data_dir.root_path().c_str())) { MERROR("Data directory resides on FAT32 volume that has 4GiB file size limit, blockchain might get corrupted."); } |