Commit 299edf32 authored by Frédéric Delanoy's avatar Frédéric Delanoy Committed by Alexandre Julliard

winecrt0: Use BOOL type where appropriate.

parent ca58cea0
......@@ -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)
{
......
......@@ -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)
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment