Changes by: aia21
Update of /cvs/linux-ntfs/ntfsprogs/libntfs
In directory delta357:/tmp/cvs-serv9505
Modified Files:
attrib.c
Log Message:
Make a little nicer.
Index: attrib.c
===================================================================
RCS file: /cvs/linux-ntfs/ntfsprogs/libntfs/attrib.c,v
retrieving revision 1.232
retrieving revision 1.233
diff -u -p -r1.232 -r1.233
--- attrib.c 1 Nov 2006 20:20:18 -0000 1.232
+++ attrib.c 7 Nov 2006 10:37:25 -0000 1.233
@@ -77,8 +77,7 @@ s64 ntfs_get_attribute_value_length(cons
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);
}
/**
|