Frédéric Delanoy : winecrt0: Use BOOL type where appropriate.
Module: wine Branch: master Commit: 299edf3217244f1a8730eeb0fee9091654baa460 URL: http://source.winehq.org/git/wine.git/?a=commit;h=299edf3217244f1a8730eeb0fe... Author: Frédéric Delanoy <frederic.delanoy(a)gmail.com> Date: Wed Nov 27 23:19:04 2013 +0100 winecrt0: Use BOOL type where appropriate. --- dlls/winecrt0/exe_main.c | 3 ++- dlls/winecrt0/exe_wmain.c | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/dlls/winecrt0/exe_main.c b/dlls/winecrt0/exe_main.c index ec8e6d5..89ffa7b 100644 --- a/dlls/winecrt0/exe_main.c +++ b/dlls/winecrt0/exe_main.c @@ -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) { diff --git a/dlls/winecrt0/exe_wmain.c b/dlls/winecrt0/exe_wmain.c index 0a4464f..ce685f8 100644 --- a/dlls/winecrt0/exe_wmain.c +++ b/dlls/winecrt0/exe_wmain.c @@ -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) {
participants (1)
-
Alexandre Julliard