From: Alex Martens via SeaBIOS Date: Sat, 26 Jun 2021 22:13:40 +0000 (+0000) Subject: nvme: fix missing newline on sq full print X-Git-Tag: rel-1.15.0~2 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=54082c81d96028ba8c76fbe6784085cf1df76b20;p=seabios.git nvme: fix missing newline on sq full print Signed-off-by: Alex Martens --- diff --git a/src/hw/nvme.c b/src/hw/nvme.c index 746e468..f035fa2 100644 --- a/src/hw/nvme.c +++ b/src/hw/nvme.c @@ -155,7 +155,7 @@ static struct nvme_sqe * nvme_get_next_sqe(struct nvme_sq *sq, u8 opc, void *metadata, void *data, void *data2) { if (((sq->head + 1) & sq->common.mask) == sq->tail) { - dprintf(3, "submission queue is full"); + dprintf(3, "submission queue is full\n"); return NULL; }