diff options
author | Kenneth R Westerback <krw@cvs.openbsd.org> | 2008-03-21 20:30:03 +0000 |
---|---|---|
committer | Kenneth R Westerback <krw@cvs.openbsd.org> | 2008-03-21 20:30:03 +0000 |
commit | bd228c4de9d5c224bb3388fc500a6b21e6d28d8b (patch) | |
tree | 968839a267df0de08f0974c72c13977ae4101fd7 | |
parent | 6f959f10e25d1f1daf9ca6312593b004589a75d4 (diff) |
Fix typo/pasto in commented out debug printf(). sc_dv -> sc_dev.
-rw-r--r-- | sys/dev/isa/fd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/isa/fd.c b/sys/dev/isa/fd.c index cab382f4a3b..8d1f5ba0893 100644 --- a/sys/dev/isa/fd.c +++ b/sys/dev/isa/fd.c @@ -1,4 +1,4 @@ -/* $OpenBSD: fd.c,v 1.69 2008/03/20 00:59:37 krw Exp $ */ +/* $OpenBSD: fd.c,v 1.70 2008/03/21 20:30:02 krw Exp $ */ /* $NetBSD: fd.c,v 1.90 1996/05/12 23:12:03 mycroft Exp $ */ /*- @@ -188,7 +188,7 @@ fdgetdisklabel(dev_t dev, struct fd_softc *fd, struct disklabel *lp, */ errstring = readdisklabel(DISKLABELDEV(dev), fdstrategy, lp, spoofonly); if (errstring) { - /*printf("%s: %s\n", fd->sc_dv.dv_xname, errstring);*/ + /*printf("%s: %s\n", fd->sc_dev.dv_xname, errstring);*/ } } |