diff --git a/src/sys/ubixfsv2/btree.cpp b/src/sys/ubixfsv2/btree.cpp index bfd2ce3..a83ed21 100644 --- a/src/sys/ubixfsv2/btree.cpp +++ b/src/sys/ubixfsv2/btree.cpp @@ -134,7 +134,7 @@ } cout << "node->CT[curSlot]->name == " << ((ubixfsInode *)bnode->childTail[curSlot])->name << endl; ubixfsInode * tmp = (ubixfsInode *)bnode->childTail[curSlot]; - if (tmp != NULL && tmp->next != NULL) cout << tmp->next->name << endl; + if (tmp != NULL && tmp->next != NULL) cout << "next->name: " << tmp->next->name << endl; inode->prev = (ubixfsInode *)bnode->childTail[curSlot]; inode->next = inode->prev->next; inode->prev->next = inode;