1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-16 10:20:30 +00:00

Fix syntax error, where this was not compile tested after style(9)'ing.

This commit is contained in:
David E. O'Brien 2002-03-01 07:05:45 +00:00
parent dd4af53607
commit 969e32658d
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=91520

View File

@ -142,7 +142,7 @@ void module_setspecific(module_t, modspecific_t *);
extern int mod_debug;
#define MOD_DEBUG_REFS 1
#define MOD_DPF(cat, args) do { \
#define MOD_DPF(cat, args) do { \
if (mod_debug & MOD_DEBUG_##cat) \
printf(args); \
} while (0)