Commit 68989570 authored by Michael Stefaniuc's avatar Michael Stefaniuc Committed by Alexandre Julliard

shdocvw: Use FAILED instead of !SUCCEEDED.

parent 2f6df7c2
...@@ -330,5 +330,5 @@ DWORD register_iexplore(BOOL doregister) ...@@ -330,5 +330,5 @@ DWORD register_iexplore(BOOL doregister)
return S_OK; return S_OK;
} }
hres = reg_install(doregister ? "RegisterIE" : "UnregisterIE", NULL); hres = reg_install(doregister ? "RegisterIE" : "UnregisterIE", NULL);
return !SUCCEEDED(hres); return FAILED(hres);
} }
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