diff options
author | Anton Altaparmakov <aia21@cantab.net> | 2006-03-07 14:53:46 +0300 |
---|---|---|
committer | Anton Altaparmakov <aia21@cantab.net> | 2006-03-07 14:53:46 +0300 |
commit | bb8047d3540affd6b8c2adac3fe792e07143be0f (patch) | |
tree | 8396d13b1400225470eef6e48406bb74a81bd925 /fs/ntfs | |
parent | 1cf3109ffb26a6ea572fd02436bd10458b4b2187 (diff) | |
download | linux-bb8047d3540affd6b8c2adac3fe792e07143be0f.tar.xz |
NTFS: Fix two compiler warnings on Alpha. Thanks to Andrew Morton for
reporting them.
Signed-off-by: Anton Altaparmakov <aia21@cantab.net>
Diffstat (limited to 'fs/ntfs')
-rw-r--r-- | fs/ntfs/dir.c | 2 | ||||
-rw-r--r-- | fs/ntfs/file.c | 3 |
2 files changed, 3 insertions, 2 deletions
diff --git a/fs/ntfs/dir.c b/fs/ntfs/dir.c index b0690d4c8906..9d9ed3fe371d 100644 --- a/fs/ntfs/dir.c +++ b/fs/ntfs/dir.c @@ -1136,7 +1136,7 @@ static int ntfs_readdir(struct file *filp, void *dirent, filldir_t filldir) if (fpos == 1) { ntfs_debug("Calling filldir for .. with len 2, fpos 0x1, " "inode 0x%lx, DT_DIR.", - parent_ino(filp->f_dentry)); + (unsigned long)parent_ino(filp->f_dentry)); rc = filldir(dirent, "..", 2, fpos, parent_ino(filp->f_dentry), DT_DIR); if (rc) diff --git a/fs/ntfs/file.c b/fs/ntfs/file.c index 5027d3d1b3fe..2e5ba0c535d9 100644 --- a/fs/ntfs/file.c +++ b/fs/ntfs/file.c @@ -943,7 +943,8 @@ rl_not_mapped_enoent: } ni->runlist.rl = rl; 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. */ if (!NInoAttr(ni)) base_ni = ni; |