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

winemenubuilder: Use BOOL type where appropriate.

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