--- a/userlibandfileserver/fileserver/fs_utils/bit_vector.cpp Wed Oct 13 13:34:03 2010 +0100
+++ b/userlibandfileserver/fileserver/fs_utils/bit_vector.cpp Mon Oct 18 15:31:10 2010 +0100
@@ -327,11 +327,11 @@
return FindNearest(aStartPos, aBitVal, EFalse);
default:
- Panic(EWrondFindDirection);
- return EFalse;
+ break;
+ };
- };
-
+ Panic(EWrondFindDirection);
+ return EFalse;
}
//-----------------------------------------------------------------------------
@@ -670,11 +670,9 @@
{
if(aIdx == 0)
return ETrue;
- else
- {
- aIdx--;
- return EFalse;
- }
+
+ aIdx--;
+ return EFalse;
}
//-----------------------------------------------------------------------------
@@ -692,8 +690,8 @@
aIdx++;
return EFalse;
}
- else
- return ETrue;
+
+ return ETrue;
}
//-----------------------------------------------------------------------------