1
0
mirror of https://github.com/wine-mirror/wine synced 2024-07-05 09:18:56 +00:00

notepad: Use BOOL type where appropriate.

This commit is contained in:
Frédéric Delanoy 2014-02-27 15:33:26 +01:00 committed by Alexandre Julliard
parent ec082c3102
commit dc8b11e6f4

View File

@ -616,8 +616,8 @@ static int AlertFileDoesNotExist(LPCWSTR szFileName)
static void HandleCommandLine(LPWSTR cmdline)
{
WCHAR delimiter;
int opt_print=0;
BOOL opt_print = FALSE;
/* skip white space */
while (*cmdline == ' ') cmdline++;
@ -644,7 +644,7 @@ static void HandleCommandLine(LPWSTR cmdline)
{
case 'p':
case 'P':
opt_print=1;
opt_print = TRUE;
break;
}
}