summaryrefslogtreecommitdiff
path: root/send-utils.c
diff options
context:
space:
mode:
authorDavid Sterba <dsterba@suse.cz>2014-11-25 19:50:12 +0100
committerDavid Sterba <dsterba@suse.cz>2014-11-25 19:50:12 +0100
commit15ed5e2a91ff8e02ae600044b3d38dad1917fc7c (patch)
tree7305e66f4884c774b3366ad3c433a62d13b6e926 /send-utils.c
parentad96e8f4d656b6b46253b2122a96d5e9c4a17b18 (diff)
btrfs-progs: fix spacing in error messages
Signed-off-by: David Sterba <dsterba@suse.cz>
Diffstat (limited to 'send-utils.c')
-rw-r--r--send-utils.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/send-utils.c b/send-utils.c
index 71b6ec15..cbaf2e90 100644
--- a/send-utils.c
+++ b/send-utils.c
@@ -556,7 +556,7 @@ int subvol_uuid_search_init(int mnt_fd, struct subvol_uuid_search *s)
ret = is_uuid_tree_supported(mnt_fd);
if (ret < 0) {
fprintf(stderr,
- "ERROR: check if we support uuid tree fails- %s\n",
+ "ERROR: check if we support uuid tree fails - %s\n",
strerror(errno));
return ret;
} else if (ret) {
@@ -579,7 +579,7 @@ int subvol_uuid_search_init(int mnt_fd, struct subvol_uuid_search *s)
ret = ioctl(mnt_fd, BTRFS_IOC_TREE_SEARCH, &args);
e = errno;
if (ret < 0) {
- fprintf(stderr, "ERROR: can't perform the search- %s\n",
+ fprintf(stderr, "ERROR: can't perform the search - %s\n",
strerror(e));
return ret;
}