aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/mpt
diff options
context:
space:
mode:
authorRyan Libby <rlibby@FreeBSD.org>2017-06-30 22:06:24 +0000
committerRyan Libby <rlibby@FreeBSD.org>2017-06-30 22:06:24 +0000
commit5a62cbcaad2d7851f1dd03d5a078a64f743e0d8f (patch)
treeed66efba88bf03520db41211217c5132c86fb971 /sys/dev/mpt
parentfb0e3235eaf76fcfcede7a0f132d2d7a117f112e (diff)
Notes
Diffstat (limited to 'sys/dev/mpt')
-rw-r--r--sys/dev/mpt/mpt.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/mpt/mpt.h b/sys/dev/mpt/mpt.h
index 3fcbe2341afa..50befa27dd25 100644
--- a/sys/dev/mpt/mpt.h
+++ b/sys/dev/mpt/mpt.h
@@ -932,14 +932,14 @@ enum {
#define mpt_lprt(mpt, level, ...) \
do { \
- if (level <= (mpt)->verbose) \
+ if ((level) <= (mpt)->verbose) \
mpt_prt(mpt, __VA_ARGS__); \
} while (0)
#if 0
#define mpt_lprtc(mpt, level, ...) \
do { \
- if (level <= (mpt)->verbose) \
+ if ((level) <= (mpt)->verbose) \
mpt_prtc(mpt, __VA_ARGS__); \
} while (0)
#endif