biosdisk.c: add missing \n to error message

Sponsored by:	Klara Systems
This commit is contained in:
Allan Jude 2018-06-16 05:58:33 +00:00
parent bdeee1b234
commit 23e7fe13ee
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=335247

View File

@ -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);