diff options
author | luigi1111 <luigi1111w@gmail.com> | 2020-09-25 18:16:19 -0500 |
---|---|---|
committer | luigi1111 <luigi1111w@gmail.com> | 2020-09-25 18:16:19 -0500 |
commit | d39f8237e0dcc8e81d5f546a7282b48f87c7ca46 (patch) | |
tree | d119898b9a7ea1558ee3352ce145593cb61e1893 | |
parent | Merge pull request #6819 (diff) | |
parent | daemon: Windows - fix FAT32 warning, trailing backslash is required (diff) | |
download | monero-d39f8237e0dcc8e81d5f546a7282b48f87c7ca46.tar.xz |
Merge pull request #6835
4846743 daemon: Windows - fix FAT32 warning, trailing backslash is required (xiphon)
-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."); } |