VeraCrypt
aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMounir IDRASSI <mounir.idrassi@idrix.fr>2017-06-01 17:22:20 +0200
committerMounir IDRASSI <mounir.idrassi@idrix.fr>2017-06-02 23:09:24 +0200
commite9220590ef391afdbde059e6157233ee1fe4224d (patch)
tree71af5852b55af47527af5b43d1bdca3d8b44b006
parent345a50d9764c496effe8b6ae3505b27a996f5e16 (diff)
downloadVeraCrypt-e9220590ef391afdbde059e6157233ee1fe4224d.tar.gz
VeraCrypt-e9220590ef391afdbde059e6157233ee1fe4224d.zip
Windows: fix compilation error cause by extra '&&' in if statement
-rw-r--r--src/Common/Format.c2
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