diff options
author | Anton Altaparmakov <aia21@cantab.net> | 2006-03-07 06:53:46 -0500 |
---|---|---|
committer | Anton Altaparmakov <aia21@cantab.net> | 2006-03-07 06:53:46 -0500 |
commit | bb8047d3540affd6b8c2adac3fe792e07143be0f (patch) | |
tree | 8396d13b1400225470eef6e48406bb74a81bd925 /fs/ntfs/dir.c | |
parent | 1cf3109ffb26a6ea572fd02436bd10458b4b2187 (diff) |
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/dir.c')
-rw-r--r-- | fs/ntfs/dir.c | 2 |
1 files changed, 1 insertions, 1 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) | |||
1136 | if (fpos == 1) { | 1136 | if (fpos == 1) { |
1137 | ntfs_debug("Calling filldir for .. with len 2, fpos 0x1, " | 1137 | ntfs_debug("Calling filldir for .. with len 2, fpos 0x1, " |
1138 | "inode 0x%lx, DT_DIR.", | 1138 | "inode 0x%lx, DT_DIR.", |
1139 | parent_ino(filp->f_dentry)); | 1139 | (unsigned long)parent_ino(filp->f_dentry)); |
1140 | rc = filldir(dirent, "..", 2, fpos, | 1140 | rc = filldir(dirent, "..", 2, fpos, |
1141 | parent_ino(filp->f_dentry), DT_DIR); | 1141 | parent_ino(filp->f_dentry), DT_DIR); |
1142 | if (rc) | 1142 | if (rc) |