winemenubuilder: Use BOOL type where appropriate.

This commit is contained in:
Frédéric Delanoy 2014-02-28 18:56:54 +01:00 committed by Alexandre Julliard
parent bc50be98c9
commit e5a26f6fdf
1 changed files with 2 additions and 3 deletions

View File

@ -1862,11 +1862,10 @@ static HRESULT get_cmdline( IShellLinkW *sl, LPWSTR szPath, DWORD pathSize,
if (hr == ERROR_SUCCESS)
{
WCHAR *s, *d;
int bcount, in_quotes;
int bcount = 0;
BOOL in_quotes = FALSE;
/* Extract the application path */
bcount=0;
in_quotes=0;
s=szCmdline;
d=szPath;
while (*s)