sys/module.h: Unbreak MOD_DPF printf

MOD_DPF's args parameter already has parentheses around it.  This was broken 14
years ago in r91472.

Sponsored by:	Dell EMC Isilon
This commit is contained in:
Conrad Meyer 2016-10-08 19:40:58 +00:00
parent 24ff5a3223
commit 5d9ba8e65a

View File

@ -233,7 +233,7 @@ extern int mod_debug;
#define MOD_DPF(cat, args) do { \
if (mod_debug & MOD_DEBUG_##cat) \
printf(args); \
printf args; \
} while (0)
#else /* !MOD_DEBUG */