summaryrefslogtreecommitdiffstats
path: root/sys
diff options
context:
space:
mode:
authorkato <kato@FreeBSD.org>1997-01-04 20:13:41 +0000
committerkato <kato@FreeBSD.org>1997-01-04 20:13:41 +0000
commit5276062f1bed3c6a38428d321be7560f1960ca53 (patch)
treeee70d9f2d636cfef1c9f02697f83f1f4e3be10a4 /sys
parent5936b56fef978ba37217f0658c344ba880098d61 (diff)
downloadFreeBSD-src-5276062f1bed3c6a38428d321be7560f1960ca53.zip
FreeBSD-src-5276062f1bed3c6a38428d321be7560f1960ca53.tar.gz
Fix collapse code included in #ifdef WDDEBUG: add `;' at the end of the
line, and `"' at the end of first argument of printf(). Submitted by: Michio "Karl" Jinbo <karl@marcer.nagaokaut.ac.jp>
Diffstat (limited to 'sys')
-rw-r--r--sys/pc98/pc98/wd.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/pc98/pc98/wd.c b/sys/pc98/pc98/wd.c
index 6bb726f..bf0f793 100644
--- a/sys/pc98/pc98/wd.c
+++ b/sys/pc98/pc98/wd.c
@@ -34,7 +34,7 @@
* SUCH DAMAGE.
*
* from: @(#)wd.c 7.2 (Berkeley) 5/9/91
- * $Id: wd.c,v 1.12 1996/12/04 04:21:16 asami Exp $
+ * $Id: wd.c,v 1.13 1997/01/04 10:57:45 kato Exp $
*/
/* TODO:
@@ -883,11 +883,11 @@ wdstart(int ctrlr)
#ifdef WDDEBUG
printf("cylin %ld head %ld sector %ld addr %x sts ",
cylin, head, sector,
- (int)bp->b_un.b_addr + du->dk_skip * DEV_BSIZE)
+ (int)bp->b_un.b_addr + du->dk_skip * DEV_BSIZE);
if (old_epson_note)
- printf("%x\n, epson_inb(du->dk_port + wd_altsts));
+ printf("%x\n", epson_inb(du->dk_port + wd_altsts));
else
- printf("%x\n, inb(du->dk_port + wd_altsts));
+ printf("%x\n", inb(du->dk_port + wd_altsts));
#endif
}
OpenPOWER on IntegriCloud