소스 검색

[GFS2] Two redundant casts removed

Signed-off-by: Steven Whitehouse <swhiteho@redhat.com>
Steven Whitehouse 19 년 전
부모
커밋
409e185d23
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      fs/gfs2/ops_inode.c

+ 2 - 2
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);
 	}