From: Frank Chang Date: Thu, 11 Sep 2025 16:06:46 +0000 (+0800) Subject: hw/char: sifive_uart: Add newline to error message X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=e04886254f0d88881ea14533c438859537ed1dfb;p=thirdparty%2Fqemu.git hw/char: sifive_uart: Add newline to error message Adds a missing newline character to the error message. Signed-off-by: Frank Chang Reviewed-by: Alistair Francis Message-ID: <20250911160647.5710-5-frank.chang@sifive.com> Signed-off-by: Alistair Francis --- diff --git a/hw/char/sifive_uart.c b/hw/char/sifive_uart.c index baef0bd9c28..e7357d585a1 100644 --- a/hw/char/sifive_uart.c +++ b/hw/char/sifive_uart.c @@ -113,7 +113,7 @@ static void sifive_uart_write_tx_fifo(SiFiveUARTState *s, const uint8_t *buf, if (size > fifo8_num_free(&s->tx_fifo)) { size = fifo8_num_free(&s->tx_fifo); - qemu_log_mask(LOG_GUEST_ERROR, "sifive_uart: TX FIFO overflow"); + qemu_log_mask(LOG_GUEST_ERROR, "sifive_uart: TX FIFO overflow.\n"); } if (size > 0) {