Skip to content

Commit 39dea48

Browse files
elfringfbq
authored andcommitted
locking/lockdep: Simplify character output in seq_line()
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 <christophe.jaillet@wanadoo.fr> Signed-off-by: Markus Elfring <elfring@users.sourceforge.net> Signed-off-by: Boqun Feng <boqun.feng@gmail.com> Link: https://lore.kernel.org/r/e346d688-7b01-462f-867c-ba52b7790d19@web.de
1 parent a6f88ac commit 39dea48

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

kernel/locking/lockdep_proc.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -424,7 +424,7 @@ static void seq_line(struct seq_file *m, char c, int offset, int length)
424424
for (i = 0; i < offset; i++)
425425
seq_puts(m, " ");
426426
for (i = 0; i < length; i++)
427-
seq_printf(m, "%c", c);
427+
seq_putc(m, c);
428428
seq_puts(m, "\n");
429429
}
430430

0 commit comments

Comments
 (0)