wordpad: Use BOOL type where appropriate.

This commit is contained in:
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)
{
WCHAR delimiter;
int opt_print = 0;
BOOL opt_print = FALSE;
/* skip white space */
while (*cmdline == ' ') cmdline++;
@ -1178,7 +1178,7 @@ static void HandleCommandLine(LPWSTR cmdline)
{
case 'P':
case 'p':
opt_print = 1;
opt_print = TRUE;
cmdline += 2;
continue;
}