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

This commit is contained in:
obrien 2002-03-01 07:05:45 +00:00
parent 7d70ce2abc
commit 4bb1d8f6b3

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)