Skip to content

Commit

Permalink
h2generic: don't mess with DEBUG.
Browse files Browse the repository at this point in the history
  • Loading branch information
korli committed Jun 3, 2016
1 parent be67b10 commit 6380689
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/add-ons/kernel/drivers/bluetooth/h2/h2generic/h2debug.h
Original file line number Diff line number Diff line change
Expand Up @@ -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...) ;
Expand Down

0 comments on commit 6380689

Please sign in to comment.