mirror of
https://github.com/reactos/wine.git
synced 2025-02-10 14:23:52 +00:00
xcopy: Use BOOL type where appropriate.
This commit is contained in:
parent
34ad2d20a2
commit
9b6715226e
@ -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 != '"' &&
|
||||
|
Loading…
x
Reference in New Issue
Block a user