aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorluigi1111 <luigi1111w@gmail.com>2020-09-25 18:16:19 -0500
committerluigi1111 <luigi1111w@gmail.com>2020-09-25 18:16:19 -0500
commitd39f8237e0dcc8e81d5f546a7282b48f87c7ca46 (patch)
treed119898b9a7ea1558ee3352ce145593cb61e1893
parentMerge pull request #6819 (diff)
parentdaemon: Windows - fix FAT32 warning, trailing backslash is required (diff)
downloadmonero-d39f8237e0dcc8e81d5f546a7282b48f87c7ca46.tar.xz
Merge pull request #6835
4846743 daemon: Windows - fix FAT32 warning, trailing backslash is required (xiphon)
-rw-r--r--src/daemon/main.cpp2
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.");
}