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