PVS V570: variables assigned to themselves

Change-Id: Ia6c4af6a18be28c59dd0e5f0ceab75602c538b10
Reviewed-on: https://review.haiku-os.org/c/1609
Reviewed-by: Stephan Aßmus <[email protected]>
This commit is contained in:
Adrien Destugues
2019-07-17 01:46:23 +00:00
committed by waddlesplash
parent fcf7cbe79e
commit cbda783eaa
+2 -2
View File
@@ -145,8 +145,8 @@ struct ext2_super_block {
}
void SetLastOrphan(ino_t id)
{ last_orphan = B_HOST_TO_LENDIAN_INT32((uint32)id); }
void SetReadOnlyFeatures(uint32 readOnlyFeatures) const
{ readOnlyFeatures = B_HOST_TO_LENDIAN_INT32(readOnlyFeatures); }
void SetReadOnlyFeatures(uint32 readOnlyFeatures)
{ read_only_features = B_HOST_TO_LENDIAN_INT32(readOnlyFeatures); }
bool IsValid();
// implemented in Volume.cpp