Skip to content

Commit

Permalink
samples: configfs: fix alignment in item struct
Browse files Browse the repository at this point in the history
Aling the assignment of a static structure's field to be consistent with
all other instances.

Signed-off-by: Bartosz Golaszewski <[email protected]>
Signed-off-by: Christoph Hellwig <[email protected]>
  • Loading branch information
brgl authored and Christoph Hellwig committed Oct 7, 2020
1 parent e0ee1fd commit 1b0d36e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion samples/configfs/configfs_sample.c
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ static void simple_child_release(struct config_item *item)
}

static struct configfs_item_operations simple_child_item_ops = {
.release = simple_child_release,
.release = simple_child_release,
};

static const struct config_item_type simple_child_type = {
Expand Down

0 comments on commit 1b0d36e

Please sign in to comment.