summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Sterba <dsterba@suse.com>2015-07-14 18:51:52 +0200
committerDavid Sterba <dsterba@suse.com>2015-07-14 18:51:52 +0200
commit9dbee1a6802896a6443896bfe407ab4062dff4f9 (patch)
tree512ca191f5775e46c0a02127229a2ce4b76f736b
parentac677c4d188150f0f09142ca1597006fda63bbe8 (diff)
btrfs-progs: utils: missing newline in error messages when checking dup
Signed-off-by: David Sterba <dsterba@suse.com>
-rw-r--r--utils.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils.c b/utils.c
index 39b295a4..280637d8 100644
--- a/utils.c
+++ b/utils.c
@@ -2390,7 +2390,7 @@ int test_num_disk_vs_raid(u64 metadata_profile, u64 data_profile,
if (!mixed && (data_profile & BTRFS_BLOCK_GROUP_DUP)) {
fprintf(stderr,
- "ERROR: DUP for data is allowed only in mixed mode");
+ "ERROR: DUP for data is allowed only in mixed mode\n");
return 1;
}
return 0;