Fixed warning.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@29567 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Ingo Weinhold
2009-03-17 01:34:00 +00:00
parent c7a618a037
commit bd8837cd1b
@@ -2048,12 +2048,12 @@ cache_block_io(int dev, fs_off_t bnum, void *data, fs_off_t num_blocks, int bsiz
if ((ce->flags & CE_DIRTY) || ce->clone) if ((ce->flags & CE_DIRTY) || ce->clone)
num_dirty++; num_dirty++;
if (ce->lock) if (ce->lock) {
beos_panic("cbio: can't use locked blocks here ce @ 0x%x\n",ce); beos_panic("cbio: can't use locked blocks here ce @ 0x%x\n",ce);
else } else {
cel = &bc.normal; cel = &bc.normal;
delete_from_list(cel, ce);
delete_from_list(cel, ce); }
} }
ce = NULL; ce = NULL;