diff options
author | 1999-11-23 21:17:38 +0000 | |
---|---|---|
committer | 1999-11-23 21:17:38 +0000 | |
commit | 44c0a7ddc1231e4759670c651f802b367ac92977 (patch) | |
tree | a64baf0e3bdcf8c5406653e7c6345d32bb6eb3d4 | |
parent | make a couple more items CFGPRINTF items (diff) | |
download | wireguard-openbsd-44c0a7ddc1231e4759670c651f802b367ac92977.tar.xz wireguard-openbsd-44c0a7ddc1231e4759670c651f802b367ac92977.zip |
make CFGPRINTF only available for SCSIDEBUG/DEBUG kernels
-rw-r--r-- | sys/dev/ic/isp_openbsd.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/ic/isp_openbsd.h b/sys/dev/ic/isp_openbsd.h index 3f37060920e..970dbcbb6cb 100644 --- a/sys/dev/ic/isp_openbsd.h +++ b/sys/dev/ic/isp_openbsd.h @@ -1,4 +1,4 @@ -/* $OpenBSD: isp_openbsd.h,v 1.4 1999/11/22 12:50:53 mjacob Exp $ */ +/* $OpenBSD: isp_openbsd.h,v 1.5 1999/11/23 21:17:38 mjacob Exp $ */ /* * OpenBSD Specific definitions for the Qlogic ISP Host Adapter * @@ -111,7 +111,7 @@ struct isposinfo { #define CFGPRINTF printf #elif defined(DIAGNOSTIC) #define DFLT_DBLEVEL 1 -#define CFGPRINTF printf +#define CFGPRINTF if (0) printf #elif defined(DEBUG) #define DFLT_DBLEVEL 2 #define CFGPRINTF printf |