Skip to content

Commit

Permalink
Merge ../ntfs-2.6-devel
Browse files Browse the repository at this point in the history
  • Loading branch information
Anton Altaparmakov committed Feb 24, 2006
2 parents 3672b63 + 944d795 commit 7b875af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fs/ntfs/file.c
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ static int ntfs_attr_extend_initialized(ntfs_inode *ni, const s64 new_init_size,
* enough to make ntfs_writepage() work.
*/
write_lock_irqsave(&ni->size_lock, flags);
ni->initialized_size = (index + 1) << PAGE_CACHE_SHIFT;
ni->initialized_size = (s64)(index + 1) << PAGE_CACHE_SHIFT;
if (ni->initialized_size > new_init_size)
ni->initialized_size = new_init_size;
write_unlock_irqrestore(&ni->size_lock, flags);
Expand Down

0 comments on commit 7b875af

Please sign in to comment.