Turn off DEBUG mode by default.

This commit is contained in:
nvt-se 2010-04-06 21:37:54 +00:00
parent 48f7992a48
commit ac4ba199bc
1 changed files with 2 additions and 2 deletions

View File

@ -28,7 +28,7 @@
*
* This file is part of the Contiki operating system.
*
* $Id: phase.c,v 1.9 2010/04/04 21:02:09 adamdunkels Exp $
* $Id: phase.c,v 1.10 2010/04/06 21:37:54 nvt-se Exp $
*/
/**
@ -61,7 +61,7 @@ struct phase_queueitem {
MEMB(queued_packets_memb, struct phase_queueitem, PHASE_QUEUESIZE);
#define DEBUG 1
#define DEBUG 0
#if DEBUG
#include <stdio.h>
#define PRINTF(...) printf(__VA_ARGS__)