Module: wine Branch: master Commit: 5ef5a79295cbb3bb486528a7bba9cdf7c4bbdfc2 URL: https://source.winehq.org/git/wine.git/?a=commit;h=5ef5a79295cbb3bb486528a7b...
Author: Jacek Caban jacek@codeweavers.com Date: Tue Feb 4 14:46:43 2020 +0100
ole32: Silence noisy ERRs.
Based on patch by Puetz Kevin.
Signed-off-by: Jacek Caban jacek@codeweavers.com Signed-off-by: Alexandre Julliard julliard@winehq.org
---
dlls/ole32/marshal.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dlls/ole32/marshal.c b/dlls/ole32/marshal.c index 4b8945db6f..a7401e9095 100644 --- a/dlls/ole32/marshal.c +++ b/dlls/ole32/marshal.c @@ -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", debugstr_guid(riid), hr); }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; }
@@ -303,7 +303,7 @@ static HRESULT WINAPI ClientIdentity_QueryMultipleInterfaces(IMultiQI *iface, UL nonlocal_mqis, iids, &qiresults); IRemUnknown_Release(remunk); 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