[kernel] skip warning when disable debug.

This commit is contained in:
Bernard Xiong 2019-06-07 22:44:24 +08:00
parent c8f0ae3f11
commit 3463a756d9
1 changed files with 4 additions and 1 deletions

View File

@ -262,7 +262,10 @@ void rt_object_init(struct rt_object *object,
struct rt_object *obj;
obj = rt_list_entry(node, struct rt_object, list);
RT_ASSERT(obj != object);
if (obj) /* skip warning when disable debug */
{
RT_ASSERT(obj != object);
}
}
/* leave critical */
rt_exit_critical();