define as empty when not debugging.

This commit is contained in:
christos 2020-03-03 00:20:45 +00:00
parent 9b07d16d3c
commit ee4f39b036

View File

@ -25,7 +25,7 @@
#if defined(DEBUG_PAM)
#define D(file, ...) _debug(file, __FILE__, __LINE__, __func__, __VA_ARGS__)
#else
#define D(file, ...)
#define D(file, ...) ((void)0)
#endif /* DEBUG_PAM */
typedef struct {