diff options
author | Alexander Blair <snipa@jagtech.io> | 2020-09-27 16:15:25 -0700 |
---|---|---|
committer | Alexander Blair <snipa@jagtech.io> | 2020-09-27 16:15:25 -0700 |
commit | 5eb38d253318a1a958820e6992efb5659085e3b4 (patch) | |
tree | 2634c6b9ad2f52dd7acd097a93985ab3211a9a13 | |
parent | Merge pull request #6824 (diff) | |
parent | daemon: Windows - fix FAT32 warning, trailing backslash is required (diff) | |
download | monero-5eb38d253318a1a958820e6992efb5659085e3b4.tar.xz |
Merge pull request #6834
4846743fd 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."); } |