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
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=256661

View File

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