From 9dbee1a6802896a6443896bfe407ab4062dff4f9 Mon Sep 17 00:00:00 2001 From: David Sterba Date: Tue, 14 Jul 2015 18:51:52 +0200 Subject: [PATCH] btrfs-progs: utils: missing newline in error messages when checking dup Signed-off-by: David Sterba --- utils.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils.c b/utils.c index 39b295a..280637d 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; -- 2.7.4