common: disable debugging
authorBrian Norris <banorris@uci.edu>
Mon, 21 May 2012 17:32:34 +0000 (10:32 -0700)
committerBrian Norris <banorris@uci.edu>
Mon, 21 May 2012 17:32:34 +0000 (10:32 -0700)
Note to others: do not enable debugging in the checked-in code. It is for
testint purposes only.

common.h

index 81facf69c634e855b71d71ffa8cf1eddca11f822..3e97432cb2c825cbcf56d7fb6c1510bc8e825eb7 100644 (file)
--- a/common.h
+++ b/common.h
@@ -5,7 +5,7 @@
 #include <stdlib.h>
 #include "mymemory.h"
 
-#define CONFIG_DEBUG
+//#define CONFIG_DEBUG
 
 #ifdef CONFIG_DEBUG
 #define DEBUG(fmt, ...) do { printf("*** %25s(): line %-4d *** " fmt, __func__, __LINE__, ##__VA_ARGS__); } while (0)