[NOTEPAD] Apply Wine commit dc8b11e by Frédéric Delanoy: Use BOOL type where appropriate. CORE-9371

svn path=/trunk/; revision=67677
This commit is contained in:
Amine Khaldi 2015-05-12 10:11:31 +00:00
parent 5f2e9eb893
commit 6a731923f3

View file

@ -493,7 +493,7 @@ static int AlertFileDoesNotExist(LPCTSTR szFileName)
static BOOL HandleCommandLine(LPTSTR cmdline)
{
int opt_print = 0;
BOOL opt_print = FALSE;
while (*cmdline == _T(' ') || *cmdline == _T('-') || *cmdline == _T('/'))
{
@ -509,7 +509,7 @@ static BOOL HandleCommandLine(LPTSTR cmdline)
{
case 'p':
case 'P':
opt_print = 1;
opt_print = TRUE;
break;
}
}