* Build fix when built with DEBUG defined.

* Forgot to remove the "bfs_block_runs" debugger command on module unload.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@26800 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler
2008-08-04 17:56:13 +00:00
parent 8976dbe878
commit 1be4b7c0c5
3 changed files with 8 additions and 7 deletions
@@ -456,8 +456,8 @@ BPlusTree::SetTo(Inode* stream)
// is header valid?
if (fHeader->MaximumSize() != stream->Size()) {
FATAL(("B+tree header size %Ld doesn't fit file size %Ld!\n",
fHeader->MaximumSize(), stream->Size()));
dprintf("B+tree header size %Ld doesn't fit file size %Ld!\n",
fHeader->MaximumSize(), stream->Size());
// we can't change the header since we don't have a transaction
//fHeader->maximum_size = HOST_ENDIAN_TO_BFS_INT64(stream->Size());
}