mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
biosdisk.c: add missing \n to error message
Sponsored by: Klara Systems
This commit is contained in:
parent
bdeee1b234
commit
23e7fe13ee
1 changed files with 1 additions and 1 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Reference in a new issue