Commit dde59f8f authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

mshtml: Reduce debug traces.

parent fdd42046
......@@ -1883,15 +1883,9 @@ static nsresult NSAPI nsIOService_QueryInterface(nsIIOService *iface, nsIIDRef r
{
*result = NULL;
if(IsEqualGUID(&IID_nsISupports, riid)) {
TRACE("(IID_nsISupports %p)\n", result);
*result = iface;
}else if(IsEqualGUID(&IID_nsIIOService, riid)) {
TRACE("(IID_nsIIOService %p)\n", result);
if(IsEqualGUID(&IID_nsISupports, riid)
|| IsEqualGUID(&IID_nsIIOService, riid)) {
*result = iface;
}
if(*result) {
nsIIOService_AddRef(iface);
return S_OK;
}
......
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