Added more debugging info in wdmks/pa_win_wdmks.c
This commit is contained in:
parent
d7085cb226
commit
6733684fca
1 changed files with 2 additions and 2 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in a new issue