diff options
Diffstat (limited to 'fs/ntfs/mft.c')
| -rw-r--r-- | fs/ntfs/mft.c | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/ntfs/mft.c b/fs/ntfs/mft.c index fbb9f1bc623d..0d62cd5bb7f8 100644 --- a/fs/ntfs/mft.c +++ b/fs/ntfs/mft.c @@ -958,7 +958,7 @@ bool ntfs_may_write_mft_record(ntfs_volume *vol, const unsigned long mft_no,  		 * dirty code path of the inode dirty code path when writing  		 * $MFT occurs.  		 */ -		vi = ilookup5_nowait(sb, mft_no, (test_t)ntfs_test_inode, &na); +		vi = ilookup5_nowait(sb, mft_no, ntfs_test_inode, &na);  	}  	if (vi) {  		ntfs_debug("Base inode 0x%lx is in icache.", mft_no); @@ -1019,7 +1019,7 @@ bool ntfs_may_write_mft_record(ntfs_volume *vol, const unsigned long mft_no,  		vi = igrab(mft_vi);  		BUG_ON(vi != mft_vi);  	} else -		vi = ilookup5_nowait(sb, na.mft_no, (test_t)ntfs_test_inode, +		vi = ilookup5_nowait(sb, na.mft_no, ntfs_test_inode,  				&na);  	if (!vi) {  		/*  |