Commit c019b89d authored by Mike Hearn's avatar Mike Hearn Committed by Alexandre Julliard

Fix misleading warning ole CoGetClassObject.

parent a584ffb9
......@@ -1352,7 +1352,7 @@ HRESULT WINAPI CoGetClassObject(
if ( compobj_RegReadPath(keyname, NULL, dllpath, sizeof(dllpath)) != ERROR_SUCCESS) {
/* failure: CLSID is not found in registry */
WARN("class %s not registred\n", xclsid);
WARN("class %s not registered inproc\n", xclsid);
hres = REGDB_E_CLASSNOTREG;
} else {
if ((hLibrary = LoadLibraryExA(dllpath, 0, LOAD_WITH_ALTERED_SEARCH_PATH)) == 0) {
......
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