diff options
author | Maxim Akristiniy <[email protected]> | 2017-10-23 19:51:48 +0300 |
---|---|---|
committer | Petr Mladek <[email protected]> | 2017-10-30 16:19:13 +0100 |
commit | 9afe77ed849de6af8532b4c1b9310102eed9edf7 (patch) | |
tree | 1216546e9068436072edbfde4a865ef0c851799d | |
parent | bc8293663b953c23ff7b73eb15f82393425e5e47 (diff) |
added new line symbol after warning about dropped messages
so this message will not mess with the next one
Cc: Steven Rostedt <[email protected]>
Signed-off-by: Maxim Akristiniy <[email protected]>
Reviewed-by: Sergey Senozhatsky <[email protected]>
Signed-off-by: Petr Mladek <[email protected]>
-rw-r--r-- | kernel/printk/printk.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/printk/printk.c b/kernel/printk/printk.c index 512f7c2baedd..5d81206a572d 100644 --- a/kernel/printk/printk.c +++ b/kernel/printk/printk.c @@ -2190,7 +2190,7 @@ again: } if (console_seq < log_first_seq) { - len = sprintf(text, "** %u printk messages dropped ** ", + len = sprintf(text, "** %u printk messages dropped **\n", (unsigned)(log_first_seq - console_seq)); /* messages are gone, move to first one */ |