From 60a50e3a73a16c93c119ae256a9cd1ebc255bb14 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Axel=20D=C3=B6rfler?= Date: Sun, 26 Feb 2006 17:41:29 +0000 Subject: [PATCH] Aborted "svn commit" a little bit too late: build fix for the previous revision. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@16509 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/add-ons/kernel/file_systems/bfs/BlockAllocator.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/add-ons/kernel/file_systems/bfs/BlockAllocator.cpp b/src/add-ons/kernel/file_systems/bfs/BlockAllocator.cpp index 59abdc4830..3cb748130d 100644 --- a/src/add-ons/kernel/file_systems/bfs/BlockAllocator.cpp +++ b/src/add-ons/kernel/file_systems/bfs/BlockAllocator.cpp @@ -419,7 +419,7 @@ BlockAllocator::InitializeAndClearBitmap(Transaction &transaction) // the last allocation group may contain less blocks than the others if (i == fNumGroups - 1) { - fGroups[i].fNumBits = volume->NumBlocks() - i * numBits; + fGroups[i].fNumBits = fVolume->NumBlocks() - i * numBits; fGroups[i].fNumBlocks = fGroups[i].fNumBits >> (blockShift + 3); } else { fGroups[i].fNumBits = numBits;