Skip to content

Commit

Permalink
constify dentry_operations: configfs
Browse files Browse the repository at this point in the history
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
  • Loading branch information
Al Viro committed Mar 27, 2009
1 parent ee1ec32 commit 296c2d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fs/configfs/dir.c
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ static int configfs_d_delete(struct dentry *dentry)
return 1;
}

static struct dentry_operations configfs_dentry_ops = {
static const struct dentry_operations configfs_dentry_ops = {
.d_iput = configfs_d_iput,
/* simple_delete_dentry() isn't exported */
.d_delete = configfs_d_delete,
Expand Down

0 comments on commit 296c2d8

Please sign in to comment.