1
0
mirror of https://github.com/veracrypt/VeraCrypt.git synced 2025-11-11 02:58:02 -06:00

Windows: fix compilation error cause by extra '&&' in if statement

This commit is contained in:
Mounir IDRASSI
2017-06-01 17:22:20 +02:00
parent 345a50d976
commit e9220590ef

View File

@@ -627,7 +627,7 @@ begin_format:
}
#ifndef DEBUG
if (volParams->quickFormat && volParams->fileSystem != FILESYS_NTFS && volParams->fileSystem != FILESYS_EXFAT && && volParams->fileSystem != FILESYS_REFS)
if (volParams->quickFormat && volParams->fileSystem != FILESYS_NTFS && volParams->fileSystem != FILESYS_EXFAT && volParams->fileSystem != FILESYS_REFS)
Sleep (500); // User-friendly GUI
#endif