summaryrefslogtreecommitdiffstats
path: root/sys/dev
diff options
context:
space:
mode:
authormjacob <mjacob@FreeBSD.org>2000-02-15 00:54:26 +0000
committermjacob <mjacob@FreeBSD.org>2000-02-15 00:54:26 +0000
commite05b233ca4624f8fb494e64ab758cc650ae7ebed (patch)
treefb20154658101f24784cddc1ed45bcd17a369cff /sys/dev
parent56989ea7970eedf93b99ab14c2d3597e7275346f (diff)
downloadFreeBSD-src-e05b233ca4624f8fb494e64ab758cc650ae7ebed.zip
FreeBSD-src-e05b233ca4624f8fb494e64ab758cc650ae7ebed.tar.gz
Fix ITDEBUG macro.
Approved: jkh
Diffstat (limited to 'sys/dev')
-rw-r--r--sys/dev/isp/isp_target.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/isp/isp_target.h b/sys/dev/isp/isp_target.h
index bda53e9..1c7cb20 100644
--- a/sys/dev/isp/isp_target.h
+++ b/sys/dev/isp/isp_target.h
@@ -606,7 +606,7 @@ extern int isp_tdebug;
#define ISP_TDQE(isp, msg, idx, arg) \
if (isp_tdebug > 3) isp_print_qentry(isp, msg, idx, arg)
-#define ITDEBUG(level, msg) if (level > isp_tdebug) PRINTF msg
+#define ITDEBUG(level, msg) if (isp_tdebug >= level) PRINTF msg
/*
* The functions below are target mode functions that
OpenPOWER on IntegriCloud