diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1997-09-02 01:16:51 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1997-09-02 01:16:51 +0000 |
commit | fc81823ecb899cef85ca33c34a83a6ca74814adb (patch) | |
tree | be9c90e21ecc0b41dc7fc4acd6f0508dcf8e1996 /sys/dev/ic/lpt.c | |
parent | bd87f76711efa9118d7275364eadb475f7fc6e83 (diff) |
macro fix; mason@primenet.com.au
Diffstat (limited to 'sys/dev/ic/lpt.c')
-rw-r--r-- | sys/dev/ic/lpt.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/ic/lpt.c b/sys/dev/ic/lpt.c index 9dc974779f1..ac2e7b5a492 100644 --- a/sys/dev/ic/lpt.c +++ b/sys/dev/ic/lpt.c @@ -1,4 +1,4 @@ -/* $OpenBSD: lpt.c,v 1.1 1996/11/30 00:53:35 niklas Exp $ */ +/* $OpenBSD: lpt.c,v 1.2 1997/09/02 01:16:50 deraadt Exp $ */ /* $NetBSD: lpt.c,v 1.42 1996/10/21 22:41:14 thorpej Exp $ */ /* @@ -83,7 +83,7 @@ #if !defined(DEBUG) || !defined(notdef) #define LPRINTF(a) #else -#define LPRINTF if (lptdebug) printf a +#define LPRINTF(a) if (lptdebug) printf a int lptdebug = 1; #endif |