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

propsys: Use BOOL type where appropriate.

parent 48a6375d
......@@ -315,7 +315,7 @@ static BOOL string_to_guid(LPCWSTR s, LPGUID id)
HRESULT WINAPI PSPropertyKeyFromString(LPCWSTR pszString, PROPERTYKEY *pkey)
{
int has_minus = 0, has_comma = 0;
BOOL has_minus = FALSE, has_comma = FALSE;
TRACE("(%s, %p)\n", debugstr_w(pszString), pkey);
......@@ -341,7 +341,7 @@ HRESULT WINAPI PSPropertyKeyFromString(LPCWSTR pszString, PROPERTYKEY *pkey)
if (has_comma)
return S_OK;
else
has_comma = 1;
has_comma = TRUE;
}
pszString++;
}
......@@ -357,7 +357,7 @@ HRESULT WINAPI PSPropertyKeyFromString(LPCWSTR pszString, PROPERTYKEY *pkey)
{
if (*pszString == '-')
{
has_minus = 1;
has_minus = TRUE;
pszString++;
}
}
......@@ -372,7 +372,7 @@ HRESULT WINAPI PSPropertyKeyFromString(LPCWSTR pszString, PROPERTYKEY *pkey)
if (*pszString == '-')
{
has_minus = 1;
has_minus = TRUE;
pszString++;
}
......
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