Fix userland build with tracing enabled.

This commit is contained in:
Rene Gollent 2013-04-15 18:05:35 -04:00
parent c946981296
commit 59a998dc1d

View File

@ -13,7 +13,7 @@
#include <debugger.h>
//#define TRACE_REFERENCEABLE
#ifdef TRACE_REFERENCEABLE
#if defined(TRACE_REFERENCEABLE) && defined(_KERNEL_MODE)
# include <tracing.h>
# define TRACE(x, ...) ktrace_printf(x, __VA_ARGS__);
#else