Fix build, due Count/Size change in 29979

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@30005 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Oliver Ruiz Dorantes
2009-04-07 18:47:49 +00:00
parent f99d546d87
commit e572eeaab4
@@ -42,7 +42,7 @@ DumpHciConnections(int argc, char** argv)
conn = iterator.Next();
kprintf("\tLocalDevice=%lx Destination=%s handle=%#x type=%d outqueue=%ld expected=%ld\n",
conn->Hid, bdaddrUtils::ToString(conn->destination),
conn->handle, conn->type, conn->OutGoingFrames.Size() , conn->ExpectedResponses.Size());
conn->handle, conn->type, conn->OutGoingFrames.Count() , conn->ExpectedResponses.Count());
// each channel
DoublyLinkedList<L2capChannel>::Iterator channelIterator = conn->ChannelList.GetIterator();