diff options
author | Steven Whitehouse <swhiteho@redhat.com> | 2006-10-02 14:20:43 -0400 |
---|---|---|
committer | Steven Whitehouse <swhiteho@redhat.com> | 2006-10-02 14:20:43 -0400 |
commit | 409e185d2370356ac2e4c7160e002ac5340b6709 (patch) | |
tree | b76b6c9133b3177720e6a4913708f4dd40fcf7f9 /fs | |
parent | 48516ced21e83a755ebae3d1ed03f1731befc391 (diff) | |
download | op-kernel-dev-409e185d2370356ac2e4c7160e002ac5340b6709.zip op-kernel-dev-409e185d2370356ac2e4c7160e002ac5340b6709.tar.gz |
[GFS2] Two redundant casts removed
Signed-off-by: Steven Whitehouse <swhiteho@redhat.com>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/gfs2/ops_inode.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/gfs2/ops_inode.c b/fs/gfs2/ops_inode.c index 57af019..82432d8 100644 --- a/fs/gfs2/ops_inode.c +++ b/fs/gfs2/ops_inode.c @@ -411,10 +411,10 @@ static int gfs2_mkdir(struct inode *dir, struct dentry *dentry, int mode) dent = (struct gfs2_dirent *)((char*)dent + GFS2_DIRENT_SIZE(1)); gfs2_qstr2dirent(&str, dibh->b_size - GFS2_DIRENT_SIZE(1) - sizeof(struct gfs2_dinode), dent); - gfs2_inum_out(&dip->i_num, (char *) &dent->de_inum); + gfs2_inum_out(&dip->i_num, &dent->de_inum); dent->de_type = DT_DIR; - gfs2_dinode_out(&ip->i_di, (char *)di); + gfs2_dinode_out(&ip->i_di, di); brelse(dibh); } |