xcopy: Use BOOL type where appropriate

Frédéric Delanoy frederic.delanoy at gmail.com
Mon Oct 14 17:27:18 CDT 2013


---
 programs/xcopy/xcopy.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/programs/xcopy/xcopy.c b/programs/xcopy/xcopy.c
index e3312db..3967b18 100644
--- a/programs/xcopy/xcopy.c
+++ b/programs/xcopy/xcopy.c
@@ -662,7 +662,7 @@ static WCHAR *skip_whitespace(WCHAR *p)
    Example: 'XCOPY "c:\DIR A" "c:DIR B\"' is OK. */
 static int find_end_of_word(const WCHAR *word, WCHAR **end)
 {
-    BOOL in_quotes = 0;
+    BOOL in_quotes = FALSE;
     const WCHAR *ptr = word;
     for (;;) {
         for (; *ptr != '\0' && *ptr != '"' &&
-- 
1.8.4




More information about the wine-patches mailing list