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[] ) ...@@ -27,7 +27,8 @@ int main( int argc, char *argv[] )
{ {
STARTUPINFOA info; STARTUPINFOA info;
char *cmdline = GetCommandLineA(); char *cmdline = GetCommandLineA();
int bcount = 0, in_quotes = 0; int bcount = 0;
BOOL in_quotes = FALSE;
while (*cmdline) while (*cmdline)
{ {
......
...@@ -29,7 +29,8 @@ int wmain( int argc, WCHAR *argv[] ) ...@@ -29,7 +29,8 @@ int wmain( int argc, WCHAR *argv[] )
{ {
STARTUPINFOW info; STARTUPINFOW info;
WCHAR *cmdline = GetCommandLineW(); WCHAR *cmdline = GetCommandLineW();
int bcount = 0, in_quotes = 0; int bcount = 0;
BOOL in_quotes = FALSE;
while (*cmdline) 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