diff options
author | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2017-06-01 17:22:20 +0200 |
---|---|---|
committer | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2017-06-02 23:09:24 +0200 |
commit | e9220590ef391afdbde059e6157233ee1fe4224d (patch) | |
tree | 71af5852b55af47527af5b43d1bdca3d8b44b006 /src | |
parent | 345a50d9764c496effe8b6ae3505b27a996f5e16 (diff) | |
download | VeraCrypt-e9220590ef391afdbde059e6157233ee1fe4224d.tar.gz VeraCrypt-e9220590ef391afdbde059e6157233ee1fe4224d.zip |
Windows: fix compilation error cause by extra '&&' in if statement
Diffstat (limited to 'src')
-rw-r--r-- | src/Common/Format.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Common/Format.c b/src/Common/Format.c index 82487bd7..a7445a9d 100644 --- a/src/Common/Format.c +++ b/src/Common/Format.c @@ -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 |