summaryrefslogtreecommitdiff
path: root/cmds-filesystem.c
diff options
context:
space:
mode:
authorMitchel Humpherys <mitch.special@gmail.com>2014-01-14 13:44:03 -0800
committerChris Mason <clm@fb.com>2014-01-31 08:22:28 -0800
commitef3f6124f0b5e8be126999f27f7f299a6bb3fbf6 (patch)
tree26834d311885dc9a773d9d47425e7545d1955928 /cmds-filesystem.c
parentf920dbce8d8161fff30e3e75ebfc71e978d9bea4 (diff)
btrfs-progs: fix minor grammar issues
Remove the extraneous `to' from `Can't access to X'. Signed-off-by: Mitchel Humpherys <mitch.special@gmail.com> Signed-off-by: David Sterba <dsterba@suse.cz> Signed-off-by: Chris Mason <clm@fb.com>
Diffstat (limited to 'cmds-filesystem.c')
-rw-r--r--cmds-filesystem.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/cmds-filesystem.c b/cmds-filesystem.c
index b4ed55b0..384d1b96 100644
--- a/cmds-filesystem.c
+++ b/cmds-filesystem.c
@@ -232,7 +232,7 @@ static int cmd_df(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;
}
ret = get_df(fd, &sargs);
@@ -610,7 +610,7 @@ static int cmd_sync(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;
}
@@ -879,7 +879,7 @@ static int cmd_resize(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;
}