Andrew Eikum : quartz: Clean up another trace for consistency.

Alexandre Julliard julliard at winehq.org
Thu Jan 26 14:53:13 CST 2017


Module: wine
Branch: master
Commit: c6a4811edfa97331939e3b71f34970fcd263b41b
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=c6a4811edfa97331939e3b71f34970fcd263b41b

Author: Andrew Eikum <aeikum at codeweavers.com>
Date:   Wed Jan 25 15:12:55 2017 -0600

quartz: Clean up another trace for consistency.

Signed-off-by: Andrew Eikum <aeikum at codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 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 97c049d..2bd08f1 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;
 }
 




More information about the wine-cvs mailing list