Date: Sat, 16 Jun 2018 05:58:33 +0000 (UTC) From: Allan Jude <allanjude@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r335247 - head/stand/i386/libi386 Message-ID: <201806160558.w5G5wXxc031477@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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);
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201806160558.w5G5wXxc031477>