diff mbox series

[next] jffs2: Remove space before newline

Message ID 20250729134327.1935856-1-colin.i.king@gmail.com
State New
Headers show
Series [next] jffs2: Remove space before newline | expand

Commit Message

Colin Ian King July 29, 2025, 1:43 p.m. UTC
There are a couple of instances of an extraneous space before a
newline in printk and debug messages. Remove the spaces.

Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
---
 fs/jffs2/erase.c   | 2 +-
 fs/jffs2/summary.c | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)
diff mbox series

Patch

diff --git a/fs/jffs2/erase.c b/fs/jffs2/erase.c
index fda9f4d6093f..5b7ddec4217c 100644
--- a/fs/jffs2/erase.c
+++ b/fs/jffs2/erase.c
@@ -252,7 +252,7 @@  static inline void jffs2_remove_node_refs_from_ino_list(struct jffs2_sb_info *c,
 	D2({
 		int i=0;
 		struct jffs2_raw_node_ref *this;
-		printk(KERN_DEBUG "After remove_node_refs_from_ino_list: \n");
+		printk(KERN_DEBUG "After remove_node_refs_from_ino_list:\n");
 
 		this = ic->nodes;
 
diff --git a/fs/jffs2/summary.c b/fs/jffs2/summary.c
index d83372d3e1a0..a0c1e8b2a02f 100644
--- a/fs/jffs2/summary.c
+++ b/fs/jffs2/summary.c
@@ -615,7 +615,7 @@  int jffs2_sum_scan_sumnode(struct jffs2_sb_info *c, struct jffs2_eraseblock *jeb
 
 	if ( je32_to_cpu(summary->cln_mkr) ) {
 
-		dbg_summary("Summary : CLEANMARKER node \n");
+		dbg_summary("Summary : CLEANMARKER node\n");
 
 		ret = jffs2_prealloc_raw_node_refs(c, jeb, 1);
 		if (ret)