From: Markus Elfring Date: Sun, 14 Jul 2024 17:15:09 +0000 (+0200) Subject: closures: use seq_putc() in debug_show() X-Git-Tag: v6.12-rc1~114^2~73 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fbe617af697c336db7630762158127eaa5a1d223;p=thirdparty%2Fkernel%2Flinux.git closures: use seq_putc() in debug_show() A single line break should be put into a sequence. Thus use the corresponding function "seq_putc". This issue was transformed by using the Coccinelle software. Link: https://lkml.kernel.org/r/e7faa2c4-9590-44b4-8669-69ef810277b1@web.de Signed-off-by: Markus Elfring Cc: Kent Overstreet Signed-off-by: Andrew Morton --- diff --git a/lib/closure.c b/lib/closure.c index 116afae2eed96..2bfe7d2a00481 100644 --- a/lib/closure.c +++ b/lib/closure.c @@ -278,7 +278,7 @@ static int debug_show(struct seq_file *f, void *data) seq_printf(f, " W %pS\n", (void *) cl->waiting_on); - seq_puts(f, "\n"); + seq_putc(f, '\n'); } spin_unlock_irq(&closure_list_lock);