[PATCH 1/2] quartz: Clean up another trace for consistency

Andrew Eikum aeikum at codeweavers.com
Wed Jan 25 15:12:55 CST 2017


Signed-off-by: Andrew Eikum <aeikum at codeweavers.com>
---
 dlls/quartz/filtergraph.c | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/dlls/quartz/filtergraph.c b/dlls/quartz/filtergraph.c
index 97c049d611..2bd08f1b26 100644
--- a/dlls/quartz/filtergraph.c
+++ b/dlls/quartz/filtergraph.c
@@ -730,6 +730,9 @@ static HRESULT WINAPI FilterGraph2_Reconnect(IFilterGraph2 *iface, IPin *ppin)
 
     IPin_QueryDirection(ppin, &pindir);
     hr = IPin_ConnectedTo(ppin, &pConnectedTo);
+
+    TRACE("(%p/%p)->(%p) -- %p\n", This, iface, ppin, pConnectedTo);
+
     if (FAILED(hr)) {
         TRACE("Querying connected to failed: %x\n", hr);
         return hr; 
@@ -743,7 +746,7 @@ static HRESULT WINAPI FilterGraph2_Reconnect(IFilterGraph2 *iface, IPin *ppin)
     IPin_Release(pConnectedTo);
     if (FAILED(hr))
         WARN("Reconnecting pins failed, pins are not connected now..\n");
-    TRACE("(%p->%p) -- %p %p -> %x\n", iface, This, ppin, pConnectedTo, hr);
+    TRACE("-> %08x\n", hr);
     return hr;
 }
 
-- 
2.11.0





More information about the wine-patches mailing list