diff options
| author | Frank Chang <frank.chang@sifive.com> | 2025-09-12 00:06:46 +0800 |
|---|---|---|
| committer | Alistair Francis <alistair.francis@wdc.com> | 2025-10-02 15:08:36 +1000 |
| commit | e04886254f0d88881ea14533c438859537ed1dfb (patch) | |
| tree | 1a6bdfa83147ff2b20784cfcf11fd7e48df6cf60 /hw/char/sifive_uart.c | |
| parent | 9100b9e67fbd2d60b53a6c5620c4ca2e6e43a0db (diff) | |
| download | focaccia-qemu-e04886254f0d88881ea14533c438859537ed1dfb.tar.gz focaccia-qemu-e04886254f0d88881ea14533c438859537ed1dfb.zip | |
hw/char: sifive_uart: Add newline to error message
Adds a missing newline character to the error message. Signed-off-by: Frank Chang <frank.chang@sifive.com> Reviewed-by: Alistair Francis <alistair.francis@wdc.com> Message-ID: <20250911160647.5710-5-frank.chang@sifive.com> Signed-off-by: Alistair Francis <alistair.francis@wdc.com>
Diffstat (limited to 'hw/char/sifive_uart.c')
| -rw-r--r-- | hw/char/sifive_uart.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/char/sifive_uart.c b/hw/char/sifive_uart.c index baef0bd9c2..e7357d585a 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) { |