
23 Jul
2021
23 Jul
'21
11:14 a.m.
From: Pali Rohár pali@kernel.org
Print trailing newline as the last printed byte can be something different.
Signed-off-by: Pali Rohár pali@kernel.org Reviewed-by: Marek Behún marek.behun@nic.cz Reviewed-by: Stefan Roese sr@denx.de Reviewed-by: Chris Packham judge.packham@gmail.com Tested-by: Chris Packham judge.packham@gmail.com --- tools/kwboot.c | 1 + 1 file changed, 1 insertion(+)
diff --git a/tools/kwboot.c b/tools/kwboot.c index 7fa742d84c..941f4228f9 100644 --- a/tools/kwboot.c +++ b/tools/kwboot.c @@ -560,6 +560,7 @@ kwboot_terminal(int tty)
if (in >= 0) tcsetattr(in, TCSANOW, &otio); + printf("\n"); out: return rc; }
--
2.31.1