From: David Sterba Date: Tue, 13 Sep 2016 10:27:45 +0000 (+0200) Subject: btrfs-progs: mkfs: remove useless helper X-Git-Tag: upstream/4.16.1~1247 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=2a9daceb07fff04e4a54d5cce6607f1fa253a73f;p=platform%2Fupstream%2Fbtrfs-progs.git btrfs-progs: mkfs: remove useless helper Signed-off-by: David Sterba --- diff --git a/mkfs.c b/mkfs.c index b51db32..32c9e45 100644 --- a/mkfs.c +++ b/mkfs.c @@ -971,15 +971,6 @@ fail_no_dir: goto out; } -static int open_target(char *output_name) -{ - int output_fd; - output_fd = open(output_name, O_CREAT | O_RDWR, - S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP | S_IROTH); - - return output_fd; -} - static int create_chunks(struct btrfs_trans_handle *trans, struct btrfs_root *root, u64 num_of_meta_chunks, u64 size_of_data, @@ -1698,7 +1689,8 @@ int main(int argc, char **argv) exit(1); } } else { - fd = open_target(file); + fd = open(file, O_CREAT | O_RDWR, + S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP | S_IROTH); if (fd < 0) { error("unable to open %s: %s", file, strerror(errno)); exit(1);