small tidyup

(Logical change 1.110)
edge.strict_endians
cantab.net!aia21 2003-01-25 17:02:31 +00:00
parent 6826dc9238
commit 05c32a26e1
2 changed files with 3 additions and 3 deletions

View File

@ -123,7 +123,7 @@ struct _ntfs_volume {
s64 nr_mft_records; /* Number of records in the mft, equals the
number of bits in mft_bitmap. */
s64 mft_lcn; /* Logical cluster number of the data attribute
LCN mft_lcn; /* Logical cluster number of the data attribute
for FILE_MFT. */
ntfs_inode *mft_ni; /* ntfs_inode structure for FILE_MFT. */
ntfs_attr *mft_na; /* ntfs_attr structure for the data attribute
@ -136,7 +136,7 @@ struct _ntfs_volume {
vice versa. */
int mftmirr_size; /* Size of the FILE_MFTMirr in mft records. */
s64 mftmirr_lcn; /* Logical cluster number of the data attribute
LCN mftmirr_lcn; /* Logical cluster number of the data attribute
for FILE_MFTMirr. */
ntfs_inode *mftmirr_ni; /* ntfs_inode structure for FILE_MFTMirr. */
ntfs_attr *mftmirr_na; /* ntfs_attr structure for the data attribute

View File

@ -44,8 +44,8 @@
static int ntfs_bitmap_set_bits_in_run(ntfs_attr *na, s64 start_bit, s64 count,
int value)
{
u8 *buf, *lastbyte_buf;
s64 bufsize, br;
u8 *buf, *lastbyte_buf;
int bit, firstbyte, lastbyte, lastbyte_pos, tmp, err;
if (!na || start_bit < 0 || count < 0) {