]> Git Repo - J-linux.git/commitdiff
locking/lockdep: Simplify character output in seq_line()
authorMarkus Elfring <[email protected]>
Mon, 15 Jul 2024 08:42:17 +0000 (10:42 +0200)
committerBoqun Feng <[email protected]>
Tue, 6 Aug 2024 17:46:43 +0000 (10:46 -0700)
Single characters should be put into a sequence.
Thus use the corresponding function “seq_putc” for one selected call.

This issue was transformed by using the Coccinelle software.

Suggested-by: Christophe Jaillet <[email protected]>
Signed-off-by: Markus Elfring <[email protected]>
Signed-off-by: Boqun Feng <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
kernel/locking/lockdep_proc.c

index e2bfb1db589d83bfe898b9b8de525612af4a5ec0..6db0f43fc4df548fa4476d1571e4f743e844718d 100644 (file)
@@ -424,7 +424,7 @@ static void seq_line(struct seq_file *m, char c, int offset, int length)
        for (i = 0; i < offset; i++)
                seq_puts(m, " ");
        for (i = 0; i < length; i++)
-               seq_printf(m, "%c", c);
+               seq_putc(m, c);
        seq_puts(m, "\n");
 }
 
This page took 0.045868 seconds and 4 git commands to generate.