Merge pull request #6834

4846743fd daemon: Windows - fix FAT32 warning, trailing backslash is required (xiphon)
This commit is contained in:
Alexander Blair 2020-09-27 16:15:25 -07:00
commit 5eb38d2533
No known key found for this signature in database
GPG key ID: C64552D877C32479

View file

@ -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.");
}