removed stupid type cast

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@4395 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
beveloper
2003-08-29 01:19:01 +00:00
parent ad159f4343
commit 6ecb8ce9a0
+1 -1
View File
@@ -70,7 +70,7 @@ BBlockCache::BBlockCache(uint32 blockCount,
blockCount = 1;
// create blocks and put them into the free list
for (int32 i = 0; i < (int32)blockCount; i++) {
while (blockCount--) {
_FreeBlock *block = reinterpret_cast<_FreeBlock *>(fAlloc(blockSize));
if (!block)
break;