summaryrefslogtreecommitdiffstats
path: root/fs/ntfs/mft.c
diff options
context:
space:
mode:
authorRandy Dunlap2005-03-03 12:19:53 +0100
committerAnton Altaparmakov2005-05-05 12:11:47 +0200
commit8907547d4b099e67762ea4891c127ea1f6dd1cb7 (patch)
tree74fa9c887db8a7915325ad9a76d874ed134c0d9a /fs/ntfs/mft.c
parentNTFS: - Set the ntfs_inode->allocated_size to the real allocated size in the (diff)
downloadkernel-qcow2-linux-8907547d4b099e67762ea4891c127ea1f6dd1cb7.tar.gz
kernel-qcow2-linux-8907547d4b099e67762ea4891c127ea1f6dd1cb7.tar.xz
kernel-qcow2-linux-8907547d4b099e67762ea4891c127ea1f6dd1cb7.zip
NTFS: Fix printk format warnings on ia64. (Randy Dunlap)
Signed-off-by: Randy Dunlap <rddunlap@osdl.org> Signed-off-by: Anton Altaparmakov <aia21@cantab.net>
Diffstat (limited to 'fs/ntfs/mft.c')
-rw-r--r--fs/ntfs/mft.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ntfs/mft.c b/fs/ntfs/mft.c
index 0975d738834c..66ef6e275a48 100644
--- a/fs/ntfs/mft.c
+++ b/fs/ntfs/mft.c
@@ -1802,7 +1802,7 @@ static int ntfs_mft_data_extend_allocation_nolock(ntfs_volume *vol)
return PTR_ERR(rl);
}
mft_ni->runlist.rl = rl;
- ntfs_debug("Allocated %lli clusters.", nr);
+ ntfs_debug("Allocated %lli clusters.", (long long)nr);
/* Find the last run in the new runlist. */
for (; rl[1].length; rl++)
;