Module: wine Branch: master Commit: 9b6715226e00d0be889226dfb8e8ae67a6af6a15 URL: http://source.winehq.org/git/wine.git/?a=commit;h=9b6715226e00d0be889226dfb8...
Author: Frédéric Delanoy frederic.delanoy@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 != '"' &&