diff mbox series

btrfs-progs: trivial fix about line breaker in repair_inode_nbytes_lowmem()

Message ID 20181202150836.16625-1-suy.fnst@cn.fujitsu.com (mailing list archive)
State New, archived
Headers show
Series btrfs-progs: trivial fix about line breaker in repair_inode_nbytes_lowmem() | expand

Commit Message

Su Yue Dec. 2, 2018, 3:08 p.m. UTC
From: Su Yue <suy.fnst@cn.fujitsu.com>

Move "\n" at end of the sentence to print.

Fixes: 281eec7a9ddf ("btrfs-progs: check: repair inode nbytes in lowmem mode")
Signed-off-by: Su Yue <suy.fnst@cn.fujitsu.com>
---
 check/mode-lowmem.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

David Sterba Dec. 3, 2018, 10:09 p.m. UTC | #1
On Sun, Dec 02, 2018 at 03:08:36PM +0000, damenly.su@gmail.com wrote:
> From: Su Yue <suy.fnst@cn.fujitsu.com>
> 
> Move "\n" at end of the sentence to print.
> 
> Fixes: 281eec7a9ddf ("btrfs-progs: check: repair inode nbytes in lowmem mode")
> Signed-off-by: Su Yue <suy.fnst@cn.fujitsu.com>

Applied, thanks.
diff mbox series

Patch

diff --git a/check/mode-lowmem.c b/check/mode-lowmem.c
index 14bbc9ee6cb6..919cbc2ea0ce 100644
--- a/check/mode-lowmem.c
+++ b/check/mode-lowmem.c
@@ -2142,7 +2142,7 @@  out:
 		error("failed to set nbytes in inode %llu root %llu",
 		      ino, root->root_key.objectid);
 	else
-		printf("Set nbytes in inode item %llu root %llu\n to %llu", ino,
+		printf("Set nbytes in inode item %llu root %llu to %llu\n", ino,
 		       root->root_key.objectid, nbytes);
 
 	/* research path */