wordpad: Use BOOL type where appropriate.

oldstable
Frédéric Delanoy 2013-11-02 14:34:15 +01:00 committed by Alexandre Julliard
parent 416930d498
commit 4ef76cd75c
1 changed files with 2 additions and 2 deletions

View File

@ -1154,7 +1154,7 @@ static void dialog_viewproperties(void)
static void HandleCommandLine(LPWSTR cmdline) static void HandleCommandLine(LPWSTR cmdline)
{ {
WCHAR delimiter; WCHAR delimiter;
int opt_print = 0; BOOL opt_print = FALSE;
/* skip white space */ /* skip white space */
while (*cmdline == ' ') cmdline++; while (*cmdline == ' ') cmdline++;
@ -1178,7 +1178,7 @@ static void HandleCommandLine(LPWSTR cmdline)
{ {
case 'P': case 'P':
case 'p': case 'p':
opt_print = 1; opt_print = TRUE;
cmdline += 2; cmdline += 2;
continue; continue;
} }