winecrt0: Use BOOL type where appropriate.

oldstable
Frédéric Delanoy 2013-11-27 23:19:04 +01:00 committed by Alexandre Julliard
parent ca58cea0a5
commit 299edf3217
2 changed files with 4 additions and 2 deletions

View File

@ -27,7 +27,8 @@ int main( int argc, char *argv[] )
{
STARTUPINFOA info;
char *cmdline = GetCommandLineA();
int bcount = 0, in_quotes = 0;
int bcount = 0;
BOOL in_quotes = FALSE;
while (*cmdline)
{

View File

@ -29,7 +29,8 @@ int wmain( int argc, WCHAR *argv[] )
{
STARTUPINFOW info;
WCHAR *cmdline = GetCommandLineW();
int bcount = 0, in_quotes = 0;
int bcount = 0;
BOOL in_quotes = FALSE;
while (*cmdline)
{