mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-02 12:23:31 +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:
@@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user