summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorColin Ian King <colin.i.king@gmail.com>2025-07-29 14:36:38 +0300
committerAndreas Gruenbacher <agruenba@redhat.com>2025-09-12 13:01:58 +0300
commitaa94ad9ab230d08741e6630a20fd1296b52c1009 (patch)
treefe425f7604be9092b16fc2fd165f20f05527594d
parent37b1c0f120b78f804f588ce78cfbd5a2df352a33 (diff)
downloadlinux-aa94ad9ab230d08741e6630a20fd1296b52c1009.tar.xz
gfs2: Remove space before newline
There is an extraneous space before a newline in a fs_err message. Remove it Signed-off-by: Colin Ian King <colin.i.king@gmail.com> Signed-off-by: Andreas Gruenbacher <agruenba@redhat.com> Reviewed-by: Andrew Price <anprice@redhat.com>
-rw-r--r--fs/gfs2/glock.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/gfs2/glock.c b/fs/gfs2/glock.c
index b6fd1cb17de7..09af1fe12503 100644
--- a/fs/gfs2/glock.c
+++ b/fs/gfs2/glock.c
@@ -733,7 +733,7 @@ __acquires(&gl->gl_lockref.lock)
*/
if (ret) {
if (cmpxchg(&sdp->sd_log_error, 0, ret)) {
- fs_err(sdp, "Error %d syncing glock \n", ret);
+ fs_err(sdp, "Error %d syncing glock\n", ret);
gfs2_dump_glock(NULL, gl, true);
}
spin_lock(&gl->gl_lockref.lock);