Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755739Ab0GLUxo (ORCPT ); Mon, 12 Jul 2010 16:53:44 -0400 Received: from mail.perches.com ([173.55.12.10]:1783 "EHLO mail.perches.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754969Ab0GLUu7 (ORCPT ); Mon, 12 Jul 2010 16:50:59 -0400 From: Joe Perches To: Jiri Kosina Cc: linux-kernel@vger.kernel.org, Andrew Morton , Andreas Dilger , linux-ext4@vger.kernel.org Subject: [PATCH 25/36] fs/ext3: Remove unnecessary casts of private_data Date: Mon, 12 Jul 2010 13:50:17 -0700 Message-Id: X-Mailer: git-send-email 1.7.1.337.g6068.dirty In-Reply-To: References: Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 810 Lines: 26 Signed-off-by: Joe Perches --- fs/ext3/dir.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/fs/ext3/dir.c b/fs/ext3/dir.c index e2e72c3..d056787 100644 --- a/fs/ext3/dir.c +++ b/fs/ext3/dir.c @@ -337,7 +337,7 @@ int ext3_htree_store_dirent(struct file *dir_file, __u32 hash, struct dir_private_info *info; int len; - info = (struct dir_private_info *) dir_file->private_data; + info = dir_file->private_data; p = &info->root.rb_node; /* Create and allocate the fname structure */ -- 1.7.1.337.g6068.dirty -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/