[haiku-commits] haiku: hrev43475 - src/add-ons/kernel/file_systems/bfs

  • From: mmlr@xxxxxxxx
  • To: haiku-commits@xxxxxxxxxxxxx
  • Date: Sun, 11 Dec 2011 18:30:12 +0100 (CET)

hrev43475 adds 1 changeset to branch 'master'
old head: d68053959ee1ab87d5ddc69e4a549aa503ca343e
new head: d86197cec3b4572b8be206d2aa6eb10e41093967

----------------------------------------------------------------------------

d86197c: Fix build with DEBUG on.

                                            [ Michael Lotz <mmlr@xxxxxxxx> ]

----------------------------------------------------------------------------

Revision:    hrev43475
Commit:      d86197cec3b4572b8be206d2aa6eb10e41093967
URL:         http://cgit.haiku-os.org/haiku/commit/?id=d86197c
Author:      Michael Lotz <mmlr@xxxxxxxx>
Date:        Sun Dec 11 17:29:55 2011 UTC

----------------------------------------------------------------------------

1 files changed, 1 insertions(+), 1 deletions(-)
.../kernel/file_systems/bfs/BlockAllocator.cpp     |    2 +-

----------------------------------------------------------------------------

diff --git a/src/add-ons/kernel/file_systems/bfs/BlockAllocator.cpp 
b/src/add-ons/kernel/file_systems/bfs/BlockAllocator.cpp
index ceb5f0d..3604728 100644
--- a/src/add-ons/kernel/file_systems/bfs/BlockAllocator.cpp
+++ b/src/add-ons/kernel/file_systems/bfs/BlockAllocator.cpp
@@ -1048,7 +1048,7 @@ BlockAllocator::Free(Transaction& transaction, block_run 
run)
        CHECK_ALLOCATION_GROUP(group);
 
 #ifdef DEBUG
-       if (CheckBlockRun(run, NULL, NULL, false) != B_OK) {
+       if (CheckBlockRun(run, NULL, false) != B_OK) {
                DEBUGGER(("CheckBlockRun() reports allocated blocks (which were 
just "
                        "freed)\n"));
        }


Other related posts:

  • » [haiku-commits] haiku: hrev43475 - src/add-ons/kernel/file_systems/bfs - mmlr