diff options
author | Dave Chinner <david@fromorbit.com> | 2010-01-20 10:48:05 +1100 |
---|---|---|
committer | Dave Chinner <david@fromorbit.com> | 2010-01-20 10:48:05 +1100 |
commit | 4a24cb71407dc25035d75dd3d118e0e55679e217 (patch) | |
tree | 47de3e791d35786e0b797b8033afe5f4320b08e3 /fs/xfs/xfs_dir2_sf.c | |
parent | a9273ca5c6814f393e18ed66645f817b2b71e9ad (diff) | |
download | linux-3.10-4a24cb71407dc25035d75dd3d118e0e55679e217.tar.gz linux-3.10-4a24cb71407dc25035d75dd3d118e0e55679e217.tar.bz2 linux-3.10-4a24cb71407dc25035d75dd3d118e0e55679e217.zip |
xfs: clean up sign warnings in dir2 code
We are now consistently using unsigned char strings for names
so fix up the remaining warnings in the dir2 code to complete
the cleanup.
Signed-off-by: Dave Chinner <david@fromorbit.com>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Diffstat (limited to 'fs/xfs/xfs_dir2_sf.c')
-rw-r--r-- | fs/xfs/xfs_dir2_sf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/xfs/xfs_dir2_sf.c b/fs/xfs/xfs_dir2_sf.c index 9d4f17a6967..c1a5945d463 100644 --- a/fs/xfs/xfs_dir2_sf.c +++ b/fs/xfs/xfs_dir2_sf.c @@ -782,7 +782,7 @@ xfs_dir2_sf_getdents( } ino = xfs_dir2_sf_get_inumber(sfp, xfs_dir2_sf_inumberp(sfep)); - if (filldir(dirent, sfep->name, sfep->namelen, + if (filldir(dirent, (char *)sfep->name, sfep->namelen, off & 0x7fffffff, ino, DT_UNKNOWN)) { *offset = off & 0x7fffffff; return 0; |