xcopy: Use BOOL type where appropriate.

oldstable
Frédéric Delanoy 2013-10-15 00:27:18 +02:00 committed by Alexandre Julliard
parent 34ad2d20a2
commit 9b6715226e
1 changed files with 1 additions and 1 deletions

View File

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