Commit 4ef76cd7 authored by Frédéric Delanoy's avatar Frédéric Delanoy Committed by Alexandre Julliard

wordpad: Use BOOL type where appropriate.

parent 416930d4
......@@ -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;
}
......
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