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>
This commit is contained in:
Colin Ian King 2025-07-29 12:36:38 +01:00 committed by Andreas Gruenbacher
parent 37b1c0f120
commit aa94ad9ab2

View 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);