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

windowscodecs: Use BOOL type where appropriate.

parent 1ca0c4a6
......@@ -1771,7 +1771,7 @@ HRESULT CreateComponentInfo(REFCLSID clsid, IWICComponentInfo **ppIInfo)
WCHAR guidstring[39];
LONG res;
const struct category *category;
int found=0;
BOOL found = FALSE;
HRESULT hr;
res = RegOpenKeyExW(HKEY_CLASSES_ROOT, clsid_keyname, 0, KEY_READ, &clsidkey);
......@@ -1792,7 +1792,7 @@ HRESULT CreateComponentInfo(REFCLSID clsid, IWICComponentInfo **ppIInfo)
if (res == ERROR_SUCCESS)
{
RegCloseKey(classkey);
found = 1;
found = TRUE;
}
RegCloseKey(instancekey);
}
......
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