From 15ed5e2a91ff8e02ae600044b3d38dad1917fc7c Mon Sep 17 00:00:00 2001 From: David Sterba Date: Tue, 25 Nov 2014 19:50:12 +0100 Subject: btrfs-progs: fix spacing in error messages Signed-off-by: David Sterba --- btrfs-list.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'btrfs-list.c') diff --git a/btrfs-list.c b/btrfs-list.c index b6b8493..50edcf4 100644 --- a/btrfs-list.c +++ b/btrfs-list.c @@ -1711,7 +1711,7 @@ int btrfs_list_find_updated_files(int fd, u64 root_id, u64 oldest_gen) ret = ioctl(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)); break; } @@ -1911,7 +1911,7 @@ int btrfs_list_get_path_rootid(int fd, u64 *treeid) ret = ioctl(fd, BTRFS_IOC_INO_LOOKUP, &args); if (ret < 0) { fprintf(stderr, - "ERROR: can't perform the search -%s\n", + "ERROR: can't perform the search - %s\n", strerror(errno)); return ret; } -- cgit v1.2.1