sanified deciding whether to compile with debugging or not
diff --git a/aos/linux_code/ipc_lib/queue.cc b/aos/linux_code/ipc_lib/queue.cc
index 3cdb74c..4025554 100644
--- a/aos/linux_code/ipc_lib/queue.cc
+++ b/aos/linux_code/ipc_lib/queue.cc
@@ -1,4 +1,4 @@
-#if !QUEUE_DEBUG
+#if !AOS_DEBUG
 #define NDEBUG
 #endif
 
@@ -564,7 +564,7 @@
 }
 
 bool RawQueue::IsDebug() {
-#if QUEUE_DEBUG
+#if AOS_DEBUG
   return true;
 #else
   return false;