From 23e7fe13eea11c8b65b64be2084802c18ca975aa Mon Sep 17 00:00:00 2001 From: Allan Jude Date: Sat, 16 Jun 2018 05:58:33 +0000 Subject: [PATCH] biosdisk.c: add missing \n to error message Sponsored by: Klara Systems --- stand/i386/libi386/biosdisk.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stand/i386/libi386/biosdisk.c b/stand/i386/libi386/biosdisk.c index dc541489c67e..5ec436321e68 100644 --- a/stand/i386/libi386/biosdisk.c +++ b/stand/i386/libi386/biosdisk.c @@ -619,7 +619,7 @@ bd_realstrategy(void *devdata, int rw, daddr_t dblk, size_t size, if (blks && (rc = bd_read(dev, dblk, blks, buf))) { /* Filter out floppy controller errors */ if (BD(dev).bd_flags != BD_FLOPPY || rc != 0x20) { - printf("read %d from %lld to %p, error: 0x%x", blks, dblk, + printf("read %d from %lld to %p, error: 0x%x\n", blks, dblk, buf, rc); } return (EIO);