From e9220590ef391afdbde059e6157233ee1fe4224d Mon Sep 17 00:00:00 2001 From: Mounir IDRASSI Date: Thu, 1 Jun 2017 17:22:20 +0200 Subject: Windows: fix compilation error cause by extra '&&' in if statement --- src/Common/Format.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') 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 -- cgit v1.2.3