From ef3f6124f0b5e8be126999f27f7f299a6bb3fbf6 Mon Sep 17 00:00:00 2001 From: Mitchel Humpherys Date: Tue, 14 Jan 2014 13:44:03 -0800 Subject: btrfs-progs: fix minor grammar issues Remove the extraneous `to' from `Can't access to X'. Signed-off-by: Mitchel Humpherys Signed-off-by: David Sterba Signed-off-by: Chris Mason --- cmds-balance.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'cmds-balance.c') diff --git a/cmds-balance.c b/cmds-balance.c index a151475f..8a743eca 100644 --- a/cmds-balance.c +++ b/cmds-balance.c @@ -298,7 +298,7 @@ static int do_balance(const char *path, struct btrfs_ioctl_balance_args *args, fd = open_file_or_dir(path, &dirstream); if (fd < 0) { - fprintf(stderr, "ERROR: can't access to '%s'\n", path); + fprintf(stderr, "ERROR: can't access '%s'\n", path); return 1; } @@ -497,7 +497,7 @@ static int cmd_balance_pause(int argc, char **argv) fd = open_file_or_dir(path, &dirstream); if (fd < 0) { - fprintf(stderr, "ERROR: can't access to '%s'\n", path); + fprintf(stderr, "ERROR: can't access '%s'\n", path); return 1; } @@ -538,7 +538,7 @@ static int cmd_balance_cancel(int argc, char **argv) fd = open_file_or_dir(path, &dirstream); if (fd < 0) { - fprintf(stderr, "ERROR: can't access to '%s'\n", path); + fprintf(stderr, "ERROR: can't access '%s'\n", path); return 1; } @@ -580,7 +580,7 @@ static int cmd_balance_resume(int argc, char **argv) fd = open_file_or_dir(path, &dirstream); if (fd < 0) { - fprintf(stderr, "ERROR: can't access to '%s'\n", path); + fprintf(stderr, "ERROR: can't access '%s'\n", path); return 1; } @@ -673,7 +673,7 @@ static int cmd_balance_status(int argc, char **argv) fd = open_file_or_dir(path, &dirstream); if (fd < 0) { - fprintf(stderr, "ERROR: can't access to '%s'\n", path); + fprintf(stderr, "ERROR: can't access '%s'\n", path); return 2; } -- cgit v1.2.1