mirror of
https://github.com/reactos/reactos.git
synced 2025-08-03 17:45:41 +00:00
[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:
parent
5f2e9eb893
commit
6a731923f3
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue