From e1e9cca1ceb199dbf02219b3f61d740bed3e7b62 Mon Sep 17 00:00:00 2001 From: rgrimes Date: Tue, 28 Sep 1993 21:50:59 +0000 Subject: [PATCH] Convert another printf into an lprintf since this should only be output for debugging. Thanks Chris. --- sys/i386/isa/lpt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/i386/isa/lpt.c b/sys/i386/isa/lpt.c index 9f75bd724dfc..17170402da03 100644 --- a/sys/i386/isa/lpt.c +++ b/sys/i386/isa/lpt.c @@ -264,7 +264,7 @@ lptopen(dev, flag) if (sc->sc_state) { lprintf("lp: still open\n") ; -printf("still open %x\n", sc->sc_state); +lprintf("still open %x\n", sc->sc_state); return(EBUSY); } else sc->sc_state |= INIT;