Make a little nicer.

edge.strict_endians
aia21 2006-11-07 10:37:25 +00:00
parent d556675a29
commit 025f07a269
1 changed files with 1 additions and 2 deletions

View File

@ -77,8 +77,7 @@ s64 ntfs_get_attribute_value_length(const ATTR_RECORD *a)
errno = 0;
if (a->non_resident)
return sle64_to_cpu(a->data_size);
else
return (s64)le32_to_cpu(a->value_length);
return (s64)le32_to_cpu(a->value_length);
}
/**