提交 bb8047d3 编写于 作者: A Anton Altaparmakov

NTFS: Fix two compiler warnings on Alpha. Thanks to Andrew Morton for

      reporting them.
Signed-off-by: NAnton Altaparmakov <aia21@cantab.net>
上级 1cf3109f
...@@ -1136,7 +1136,7 @@ static int ntfs_readdir(struct file *filp, void *dirent, filldir_t filldir) ...@@ -1136,7 +1136,7 @@ static int ntfs_readdir(struct file *filp, void *dirent, filldir_t filldir)
if (fpos == 1) { if (fpos == 1) {
ntfs_debug("Calling filldir for .. with len 2, fpos 0x1, " ntfs_debug("Calling filldir for .. with len 2, fpos 0x1, "
"inode 0x%lx, DT_DIR.", "inode 0x%lx, DT_DIR.",
parent_ino(filp->f_dentry)); (unsigned long)parent_ino(filp->f_dentry));
rc = filldir(dirent, "..", 2, fpos, rc = filldir(dirent, "..", 2, fpos,
parent_ino(filp->f_dentry), DT_DIR); parent_ino(filp->f_dentry), DT_DIR);
if (rc) if (rc)
......
...@@ -943,7 +943,8 @@ static int ntfs_prepare_pages_for_non_resident_write(struct page **pages, ...@@ -943,7 +943,8 @@ static int ntfs_prepare_pages_for_non_resident_write(struct page **pages,
} }
ni->runlist.rl = rl; ni->runlist.rl = rl;
status.runlist_merged = 1; status.runlist_merged = 1;
ntfs_debug("Allocated cluster, lcn 0x%llx.", lcn); ntfs_debug("Allocated cluster, lcn 0x%llx.",
(unsigned long long)lcn);
/* Map and lock the mft record and get the attribute record. */ /* Map and lock the mft record and get the attribute record. */
if (!NInoAttr(ni)) if (!NInoAttr(ni))
base_ni = ni; base_ni = ni;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册