Replace all sle64 usage of the '!=' operation with "!sle64_eq(...)".

edge.strict_endians
Erik Larsson 2016-01-28 08:28:34 +01:00
parent 7b85755080
commit 0657987a0b
1 changed files with 1 additions and 1 deletions

View File

@ -862,7 +862,7 @@ static BOOL attrlist_selfloc_condition(struct MFT_SELF_LOCATED *selfloc)
while ((length > 0)
&& al->length
&& (!le32_eq(al->type, AT_DATA)
|| ((leVCN)al->lowest_vcn != levcn))) {
|| !sle64_eq(al->lowest_vcn, levcn))) {
length -= le16_to_cpu(al->length);
al = (ATTR_LIST_ENTRY*)
((char*)al + le16_to_cpu(al->length));