diff options
author | mjacob <mjacob@FreeBSD.org> | 2000-02-15 00:54:26 +0000 |
---|---|---|
committer | mjacob <mjacob@FreeBSD.org> | 2000-02-15 00:54:26 +0000 |
commit | e05b233ca4624f8fb494e64ab758cc650ae7ebed (patch) | |
tree | fb20154658101f24784cddc1ed45bcd17a369cff /sys/dev/isp/isp_target.h | |
parent | 56989ea7970eedf93b99ab14c2d3597e7275346f (diff) | |
download | FreeBSD-src-e05b233ca4624f8fb494e64ab758cc650ae7ebed.zip FreeBSD-src-e05b233ca4624f8fb494e64ab758cc650ae7ebed.tar.gz |
Fix ITDEBUG macro.
Approved: jkh
Diffstat (limited to 'sys/dev/isp/isp_target.h')
-rw-r--r-- | sys/dev/isp/isp_target.h | 2 |
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 |