diff options
author | Eric Sandeen <sandeen@redhat.com> | 2014-12-23 17:47:27 -0500 |
---|---|---|
committer | Dave Chinner <david@fromorbit.com> | 2014-12-23 17:47:27 -0500 |
commit | 77af574eef78c404ea630f7955a5ed0c926a63fe (patch) | |
tree | 3097efacf7306d93a66ac3ed6d47ef3d48d59fbb /fs/xfs/xfs_super.c | |
parent | 96ab7954bca0eeedfb17094719db1351fba361d3 (diff) |
xfs: remove extra newlines from xfs messages
xfs_warn() and friends add a newline by default, but some
messages add another one.
Particularly for the failing write message below, this can
waste a lot of console real estate!
Signed-off-by: Eric Sandeen <sandeen@redhat.com>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Dave Chinner <david@fromorbit.com>
Diffstat (limited to 'fs/xfs/xfs_super.c')
-rw-r--r-- | fs/xfs/xfs_super.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/xfs/xfs_super.c b/fs/xfs/xfs_super.c index 19cbda196369..22e6acaa0320 100644 --- a/fs/xfs/xfs_super.c +++ b/fs/xfs/xfs_super.c | |||
@@ -685,7 +685,7 @@ xfs_blkdev_get( | |||
685 | mp); | 685 | mp); |
686 | if (IS_ERR(*bdevp)) { | 686 | if (IS_ERR(*bdevp)) { |
687 | error = PTR_ERR(*bdevp); | 687 | error = PTR_ERR(*bdevp); |
688 | xfs_warn(mp, "Invalid device [%s], error=%d\n", name, error); | 688 | xfs_warn(mp, "Invalid device [%s], error=%d", name, error); |
689 | } | 689 | } |
690 | 690 | ||
691 | return error; | 691 | return error; |