h2generic: don't mess with DEBUG.

This commit is contained in:
Jérôme Duval 2016-06-03 12:05:42 +02:00
parent be67b1022b
commit 63806897ef

View File

@ -10,8 +10,11 @@
#include <KernelExport.h>
#define DEBUG
#ifdef DEBUG
/* debug is default */
#ifndef NDEBUG
# define H2DEBUG
#endif
#ifdef H2DEBUG
# define TRACE(x...) dprintf("h2generic: " x)
#else
# define TRACE(x...) ;