Fixed reordering of initializer warning - should compile the fs_shell with

-Wall enabled...


git-svn-id: file:///srv/svn/repos/haiku/trunk/current@3365 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler 2003-05-28 01:32:40 +00:00
parent ae58716024
commit 20c74d7d25

View File

@ -319,8 +319,8 @@ inline
CachedBlock::CachedBlock(CachedBlock *cached)
:
fVolume(cached->fVolume),
fBlock(cached->fBlock),
fBlockNumber(cached->BlockNumber())
fBlockNumber(cached->BlockNumber()),
fBlock(cached->fBlock)
{
cached->Keep();
}