diff options
author | Darrick J. Wong <darrick.wong@oracle.com> | 2016-11-09 14:13:09 -0800 |
---|---|---|
committer | Darrick J. Wong <darrick.wong@oracle.com> | 2016-12-10 12:39:45 -0800 |
commit | 86544fbd853c49a9eccb3d0f4e7eb9317f3fccf9 (patch) | |
tree | a6dfa486e698d9c51219ef86b9beaf95d06675e1 /fs/ocfs2/alloc.c | |
parent | 84e40080bd6f363ddbcab75b04cb7bc742efbf12 (diff) | |
download | blackbird-obmc-linux-86544fbd853c49a9eccb3d0f4e7eb9317f3fccf9.tar.gz blackbird-obmc-linux-86544fbd853c49a9eccb3d0f4e7eb9317f3fccf9.zip |
ocfs2: add newlines to some error messages
These two error messages are missing the trailing newline.
Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com>
Diffstat (limited to 'fs/ocfs2/alloc.c')
-rw-r--r-- | fs/ocfs2/alloc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/ocfs2/alloc.c b/fs/ocfs2/alloc.c index a0ca49f09880..d4ec0d8961a6 100644 --- a/fs/ocfs2/alloc.c +++ b/fs/ocfs2/alloc.c @@ -5194,7 +5194,7 @@ int ocfs2_change_extent_flag(handle_t *handle, rec = &el->l_recs[index]; if (new_flags && (rec->e_flags & new_flags)) { mlog(ML_ERROR, "Owner %llu tried to set %d flags on an " - "extent that already had them", + "extent that already had them\n", (unsigned long long)ocfs2_metadata_cache_owner(et->et_ci), new_flags); goto out; @@ -5202,7 +5202,7 @@ int ocfs2_change_extent_flag(handle_t *handle, if (clear_flags && !(rec->e_flags & clear_flags)) { mlog(ML_ERROR, "Owner %llu tried to clear %d flags on an " - "extent that didn't have them", + "extent that didn't have them\n", (unsigned long long)ocfs2_metadata_cache_owner(et->et_ci), clear_flags); goto out; |