Commit 9b671522 authored by Frédéric Delanoy's avatar Frédéric Delanoy Committed by Alexandre Julliard

xcopy: Use BOOL type where appropriate.

parent 34ad2d20
......@@ -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 != '"' &&
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment