Fix the libproc build when DEBUG is defined.

This commit is contained in:
Mark Johnston 2013-10-17 03:39:21 +00:00
parent fca60728d3
commit 25aecfbb23

View File

@ -49,7 +49,7 @@ struct proc_handle {
};
#ifdef DEBUG
#define DPRINTF(fmt, ...) warn(fmt, __VA_ARGS__)
#define DPRINTF(...) warn(__VA_ARGS__)
#else
#define DPRINTF(fmt, ...)
#define DPRINTF(...)
#endif