=?UTF-8?Q?Fr=C3=A9d=C3=A9ric=20Delanoy=20?=: xcopy: Use BOOL type where appropriate.

Alexandre Julliard julliard at winehq.org
Tue Oct 15 13:27:10 CDT 2013


Module: wine
Branch: master
Commit: 9b6715226e00d0be889226dfb8e8ae67a6af6a15
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=9b6715226e00d0be889226dfb8e8ae67a6af6a15

Author: Frédéric Delanoy <frederic.delanoy at gmail.com>
Date:   Tue Oct 15 00:27:18 2013 +0200

xcopy: Use BOOL type where appropriate.

---

 programs/xcopy/xcopy.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

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 != '"' &&




More information about the wine-cvs mailing list