diff options
author | David Sterba <dsterba@suse.cz> | 2014-05-15 18:48:20 +0400 |
---|---|---|
committer | Chris Mason <clm@fb.com> | 2014-06-10 04:20:53 +0400 |
commit | 351fd3532159441e810d458a5b681090ff8449fd (patch) | |
tree | 7c087b510bff35cfd9c9b8d21d6a2a56f3a68f32 /fs/btrfs/super.c | |
parent | 7d78874273463a784759916fc3e0b4e2eb141c70 (diff) | |
download | linux-351fd3532159441e810d458a5b681090ff8449fd.tar.xz |
btrfs: remove stale newlines from log messages
I've noticed an extra line after "use no compression", but search
revealed much more in messages of more critical levels and rare errors.
Signed-off-by: David Sterba <dsterba@suse.cz>
Signed-off-by: Chris Mason <clm@fb.com>
Diffstat (limited to 'fs/btrfs/super.c')
-rw-r--r-- | fs/btrfs/super.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/btrfs/super.c b/fs/btrfs/super.c index 77fcb5706700..4662d92a4b73 100644 --- a/fs/btrfs/super.c +++ b/fs/btrfs/super.c @@ -511,7 +511,7 @@ int btrfs_parse_options(struct btrfs_root *root, char *options) } else if (compress) { if (!btrfs_test_opt(root, COMPRESS)) btrfs_info(root->fs_info, - "btrfs: use %s compression\n", + "btrfs: use %s compression", compress_type); } break; |