Commit 5ef5a792 authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

ole32: Silence noisy ERRs.

Based on patch by Puetz Kevin. Signed-off-by: 's avatarJacek Caban <jacek@codeweavers.com> Signed-off-by: 's avatarAlexandre Julliard <julliard@winehq.org>
parent 282678cc
...@@ -165,7 +165,7 @@ HRESULT marshal_object(APARTMENT *apt, STDOBJREF *stdobjref, REFIID riid, IUnkno ...@@ -165,7 +165,7 @@ HRESULT marshal_object(APARTMENT *apt, STDOBJREF *stdobjref, REFIID riid, IUnkno
ERR("Failed to create an IRpcStubBuffer from IPSFactory for %s with error 0x%08x\n", ERR("Failed to create an IRpcStubBuffer from IPSFactory for %s with error 0x%08x\n",
debugstr_guid(riid), hr); debugstr_guid(riid), hr);
}else { }else {
ERR("couldn't get IPSFactory buffer for interface %s\n", debugstr_guid(riid)); WARN("couldn't get IPSFactory buffer for interface %s\n", debugstr_guid(riid));
hr = E_NOINTERFACE; hr = E_NOINTERFACE;
} }
...@@ -303,7 +303,7 @@ static HRESULT WINAPI ClientIdentity_QueryMultipleInterfaces(IMultiQI *iface, UL ...@@ -303,7 +303,7 @@ static HRESULT WINAPI ClientIdentity_QueryMultipleInterfaces(IMultiQI *iface, UL
nonlocal_mqis, iids, &qiresults); nonlocal_mqis, iids, &qiresults);
IRemUnknown_Release(remunk); IRemUnknown_Release(remunk);
if (FAILED(hr)) if (FAILED(hr))
ERR("IRemUnknown_RemQueryInterface failed with error 0x%08x\n", hr); WARN("IRemUnknown_RemQueryInterface failed with error 0x%08x\n", hr);
} }
/* IRemUnknown_RemQueryInterface can return S_FALSE if only some of /* IRemUnknown_RemQueryInterface can return S_FALSE if only some of
......
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