packagefs: Fix debug build
This commit is contained in:
parent
1559102fe7
commit
14713507a3
@ -72,12 +72,12 @@ void
|
|||||||
Index::Dump()
|
Index::Dump()
|
||||||
{
|
{
|
||||||
D(
|
D(
|
||||||
PRINT("Index: `%s', type: %" B_PRIx32 "\n", Name(), Type());
|
PRINT("Index: `%s', type: %" B_PRIx32 "\n", Name().Data(), Type());
|
||||||
IndexIterator it;
|
IndexIterator it;
|
||||||
if (GetIterator(it)) {
|
if (GetIterator(it)) {
|
||||||
while (Node* node = it.Next()) {
|
while (Node* node = it.Next()) {
|
||||||
PRINT(" node: `%s', dir: %" B_PRIdINO "\n", node->Name(),
|
PRINT(" node: `%s', dir: %" B_PRIdINO "\n",
|
||||||
node->Parent()->ID());
|
node->Name().Data(), node->Parent()->ID());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user