mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-01-31 15:10:23 +08:00
Merge pull request #2757 from BernardXiong/fix_warning
[kernel] skip warning when disable debug.
This commit is contained in:
commit
849d62dd57
@ -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();
|
||||
|
Loading…
x
Reference in New Issue
Block a user