svn commit: r335247 - head/stand/i386/libi386

Allan Jude allanjude at FreeBSD.org
Sat Jun 16 05:58:34 UTC 2018


Author: allanjude
Date: Sat Jun 16 05:58:33 2018
New Revision: 335247
URL: https://svnweb.freebsd.org/changeset/base/335247

Log:
  biosdisk.c: add missing \n to error message
  
  Sponsored by:	Klara Systems

Modified:
  head/stand/i386/libi386/biosdisk.c

Modified: head/stand/i386/libi386/biosdisk.c
==============================================================================
--- head/stand/i386/libi386/biosdisk.c	Sat Jun 16 04:50:40 2018	(r335246)
+++ head/stand/i386/libi386/biosdisk.c	Sat Jun 16 05:58:33 2018	(r335247)
@@ -619,7 +619,7 @@ bd_realstrategy(void *devdata, int rw, daddr_t dblk, s
 	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);


More information about the svn-src-head mailing list