]> Repos - portaudio/commitdiff
Added more debugging info in wdmks/pa_win_wdmks.c
authorrobiwan <robiwan@0f58301d-fd10-0410-b4af-bbb618454e57>
Thu, 28 Aug 2014 05:59:40 +0000 (05:59 +0000)
committerrobiwan <robiwan@0f58301d-fd10-0410-b4af-bbb618454e57>
Thu, 28 Aug 2014 05:59:40 +0000 (05:59 +0000)
src/hostapi/wdmks/pa_win_wdmks.c

index 753955b8a45d941d4650c4d80780d9e2dd21dfbd..6d37bd179d6de2ee847636d04477fb09dc115cae 100644 (file)
@@ -1032,7 +1032,7 @@ static const KSTOPOLOGY_CONNECTION* FindStartConnectionFrom(ULONG startPin, PaWi
 {
     unsigned i;
     const KSTOPOLOGY_CONNECTION* connections = (const KSTOPOLOGY_CONNECTION*)(filter->connections + 1);
-    PA_DEBUG(("FindStartConnectionFrom: Checking %u connections...\n", filter->connections->Count));
+    PA_DEBUG(("FindStartConnectionFrom: Startpin %u, Checking %u connections...\n", startPin, filter->connections->Count));
     for (i = 0; i < filter->connections->Count; ++i)
     {
         const KSTOPOLOGY_CONNECTION* pConn = connections + i;
@@ -1052,7 +1052,7 @@ static const KSTOPOLOGY_CONNECTION* FindStartConnectionTo(ULONG startPin, PaWinW
 {
     unsigned i;
     const KSTOPOLOGY_CONNECTION* connections = (const KSTOPOLOGY_CONNECTION*)(filter->connections + 1);
-    PA_DEBUG(("FindStartConnectionTo: Checking %u connections...\n", filter->connections->Count));
+    PA_DEBUG(("FindStartConnectionTo: Startpin %u, Checking %u connections...\n", startPin, filter->connections->Count));
     for (i = 0; i < filter->connections->Count; ++i)
     {
         const KSTOPOLOGY_CONNECTION* pConn = connections + i;