mirror of
https://github.com/kdave/btrfs-progs
synced 2025-03-11 05:07:51 +00:00
btrfs-progs: remove unused parameter from print_inode_item
Signed-off-by: David Sterba <dsterba@suse.com>
This commit is contained in:
parent
15db981600
commit
ae00d4a251
@ -947,8 +947,8 @@ static void print_timespec(struct extent_buffer *eb,
|
||||
timestamp, suffix);
|
||||
}
|
||||
|
||||
static void print_inode_item(struct extent_buffer *eb, struct btrfs_item *item,
|
||||
struct btrfs_inode_item *ii)
|
||||
static void print_inode_item(struct extent_buffer *eb,
|
||||
struct btrfs_inode_item *ii)
|
||||
{
|
||||
char flags_str[256];
|
||||
|
||||
@ -1091,7 +1091,7 @@ void btrfs_print_leaf(struct btrfs_root *root, struct extent_buffer *l)
|
||||
switch (type) {
|
||||
case BTRFS_INODE_ITEM_KEY:
|
||||
ii = btrfs_item_ptr(l, i, struct btrfs_inode_item);
|
||||
print_inode_item(l, item, ii);
|
||||
print_inode_item(l, ii);
|
||||
break;
|
||||
case BTRFS_INODE_REF_KEY:
|
||||
iref = btrfs_item_ptr(l, i, struct btrfs_inode_ref);
|
||||
|
Loading…
Reference in New Issue
Block a user