From: Darrick J. Wong Date: Wed, 24 Feb 2021 00:09:28 +0000 (-0500) Subject: xfs_repair: fix unmount error message to have a newline X-Git-Tag: v5.11.0-rc1~14 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=1acabf90d4fc60502c4e03b924067c250b8a9b43;p=thirdparty%2Fxfsprogs-dev.git xfs_repair: fix unmount error message to have a newline Add a newline so that this is consistent with the other error messages. Signed-off-by: Darrick J. Wong Reviewed-by: Brian Foster Reviewed-by: Christoph Hellwig Reviewed-by: Chaitanya Kulkarni Reviewed-by: Allison Henderson Signed-off-by: Eric Sandeen --- diff --git a/repair/xfs_repair.c b/repair/xfs_repair.c index 724661d84..9409f0d87 100644 --- a/repair/xfs_repair.c +++ b/repair/xfs_repair.c @@ -1136,7 +1136,7 @@ _("Note - stripe unit (%d) and width (%d) were copied from a backup superblock.\ error = -libxfs_umount(mp); if (error) do_error( - _("File system metadata writeout failed, err=%d. Re-run xfs_repair."), + _("File system metadata writeout failed, err=%d. Re-run xfs_repair.\n"), error); libxfs_destroy(&x);