]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
gfs2: Remove space before newline
authorColin Ian King <colin.i.king@gmail.com>
Tue, 29 Jul 2025 11:36:38 +0000 (12:36 +0100)
committerAndreas Gruenbacher <agruenba@redhat.com>
Fri, 12 Sep 2025 10:01:58 +0000 (12:01 +0200)
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>
fs/gfs2/glock.c

index b6fd1cb17de7ba2e476989ce254f1fcc3d76dde4..09af1fe12503849c4661ca0b88b873ec70b1955e 100644 (file)
@@ -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);