diff options
author | 1997-10-18 10:37:03 +0000 | |
---|---|---|
committer | 1997-10-18 10:37:03 +0000 | |
commit | a61ae37bb32f92d6a6fea62c65d526a6ec668fd3 (patch) | |
tree | d5c89497c672e4e2d5487e52bb1e09ab17a55308 /sys/dev/isa/mcd.c | |
parent | do not create spoofed partition for DOSTYP_OPENBSD (diff) | |
download | wireguard-openbsd-a61ae37bb32f92d6a6fea62c65d526a6ec668fd3.tar.xz wireguard-openbsd-a61ae37bb32f92d6a6fea62c65d526a6ec668fd3.zip |
avoid "no disklabel" error messages
Diffstat (limited to 'sys/dev/isa/mcd.c')
-rw-r--r-- | sys/dev/isa/mcd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/isa/mcd.c b/sys/dev/isa/mcd.c index 259e0ba9e91..4387d246872 100644 --- a/sys/dev/isa/mcd.c +++ b/sys/dev/isa/mcd.c @@ -1,4 +1,4 @@ -/* $OpenBSD: mcd.c,v 1.21 1997/09/29 12:01:27 mickey Exp $ */ +/* $OpenBSD: mcd.c,v 1.22 1997/10/18 10:37:12 deraadt Exp $ */ /* $NetBSD: mcd.c,v 1.49 1996/05/12 23:53:11 mycroft Exp $ */ /* @@ -722,7 +722,7 @@ mcdgetdisklabel(dev, sc) errstring = readdisklabel(MCDLABELDEV(dev), mcdstrategy, lp, sc->sc_dk.dk_cpulabel); if (errstring) { - printf("%s: %s\n", sc->sc_dev.dv_xname, errstring); + /*printf("%s: %s\n", sc->sc_dev.dv_xname, errstring);*/ return; } } |