diff options
Diffstat (limited to 'fs/ntfs/mft.c')
-rw-r--r-- | fs/ntfs/mft.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ntfs/mft.c b/fs/ntfs/mft.c index 17d32ca6bc35..23bf68453d7d 100644 --- a/fs/ntfs/mft.c +++ b/fs/ntfs/mft.c | |||
@@ -2839,7 +2839,7 @@ int ntfs_extent_mft_record_free(ntfs_inode *ni, MFT_RECORD *m) | |||
2839 | */ | 2839 | */ |
2840 | 2840 | ||
2841 | /* Mark the mft record as not in use. */ | 2841 | /* Mark the mft record as not in use. */ |
2842 | m->flags &= const_cpu_to_le16(~const_le16_to_cpu(MFT_RECORD_IN_USE)); | 2842 | m->flags &= ~MFT_RECORD_IN_USE; |
2843 | 2843 | ||
2844 | /* Increment the sequence number, skipping zero, if it is not zero. */ | 2844 | /* Increment the sequence number, skipping zero, if it is not zero. */ |
2845 | old_seq_no = m->sequence_number; | 2845 | old_seq_no = m->sequence_number; |