From b72df6551b5d4843b29149c670ca2cd68400a833 Mon Sep 17 00:00:00 2001 From: David Sterba Date: Thu, 9 Feb 2017 17:42:02 +0100 Subject: [PATCH] btrfs-progs: mkfs: remove unused argument from make_root_dir Signed-off-by: David Sterba --- mkfs/main.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/mkfs/main.c b/mkfs/main.c index fb780eb5..363abd55 100644 --- a/mkfs/main.c +++ b/mkfs/main.c @@ -161,8 +161,8 @@ err: return ret; } -static int make_root_dir(struct btrfs_trans_handle *trans, struct btrfs_root *root, - struct mkfs_allocation *allocation) +static int make_root_dir(struct btrfs_trans_handle *trans, + struct btrfs_root *root) { struct btrfs_key location; int ret; @@ -1769,7 +1769,7 @@ int main(int argc, char **argv) exit(1); } - ret = make_root_dir(trans, root, &allocation); + ret = make_root_dir(trans, root); if (ret) { error("failed to setup the root directory: %d", ret); exit(1);