* Fixed coding style violation.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@35495 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler 2010-02-16 13:26:28 +00:00
parent e190cae151
commit 599b988100
1 changed files with 2 additions and 2 deletions

View File

@ -258,8 +258,8 @@ Stream::FindBlockRun(off_t pos, block_run& run, off_t& offset)
+= indirect[current].Length() << cached.BlockShift();
if (runBlockEnd > pos) {
run = indirect[current];
offset = runBlockEnd -
(run.Length() << cached.BlockShift());
offset = runBlockEnd
- (run.Length() << cached.BlockShift());
//printf("reading from indirect block: %ld,%d\n",fRun.allocation_group,fRun.start);
//printf("### indirect-run[%ld] = (%ld,%d,%d), offset = %Ld\n",fCurrent,fRun.allocation_group,fRun.start,fRun.length,fRunFileOffset);
return fVolume.ValidateBlockRun(run);