Commit 60d54eee authored by Michael Stefaniuc's avatar Michael Stefaniuc Committed by Alexandre Julliard

mscoree: Use SUCCEEDED instead of !FAILED.

parent e72845e6
...@@ -1318,7 +1318,7 @@ HRESULT create_monodata(REFIID riid, LPVOID *ppObj ) ...@@ -1318,7 +1318,7 @@ HRESULT create_monodata(REFIID riid, LPVOID *ppObj )
goto cleanup; goto cleanup;
hr = get_file_from_strongname(assemblyname, filename, MAX_PATH); hr = get_file_from_strongname(assemblyname, filename, MAX_PATH);
if (!SUCCEEDED(hr)) if (FAILED(hr))
{ {
/* /*
* The registry doesn't have a CodeBase entry and it's not in the GAC. * The registry doesn't have a CodeBase entry and it's not in the GAC.
......
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