From: robiwan Date: Thu, 28 Aug 2014 05:59:40 +0000 (+0000) Subject: Added more debugging info in wdmks/pa_win_wdmks.c X-Git-Tag: pa_stable_v190600_20161030~48 X-Git-Url: https://andrewgundersen.net/repos?a=commitdiff_plain;h=6733684fcaf0efd2c12b8b0a21ba6fad3dc015f7;p=portaudio Added more debugging info in wdmks/pa_win_wdmks.c --- diff --git a/src/hostapi/wdmks/pa_win_wdmks.c b/src/hostapi/wdmks/pa_win_wdmks.c index 753955b..6d37bd1 100644 --- a/src/hostapi/wdmks/pa_win_wdmks.c +++ b/src/hostapi/wdmks/pa_win_wdmks.c @@ -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;