Prefix LOG and CHECK with AOS_
This prepares us for introducing glog more widely and transitioning
things over where they make sense.
Change-Id: Ic6c208882407bc2153fe875ffc736d66f5c8ade5
diff --git a/aos/util/linked_list.h b/aos/util/linked_list.h
index 5a5824e..14f1788 100644
--- a/aos/util/linked_list.h
+++ b/aos/util/linked_list.h
@@ -64,7 +64,7 @@
}
pointer = &(*pointer)->next;
}
- LOG(FATAL, "%p is not in the list\n", t);
+ AOS_LOG(FATAL, "%p is not in the list\n", t);
}
// Calls function for each element of the list.