[PATCH][next] gfs2: Remove space before newline

Colin Ian King posted 1 patch 2 months, 1 week ago
fs/gfs2/glock.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
[PATCH][next] gfs2: Remove space before newline
Posted by Colin Ian King 2 months, 1 week ago
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>
---
 fs/gfs2/glock.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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);
-- 
2.50.0
Re: [PATCH][next] gfs2: Remove space before newline
Posted by Andreas Gruenbacher 2 months, 1 week ago
On Tue, Jul 29, 2025 at 1:37 PM Colin Ian King <colin.i.king@gmail.com> wrote:
> There is an extraneous space before a newline in a fs_err message.
> Remove it

Thanks.

Andreas