mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
core/*: replace #if ENABLE_DEBUG with IS_ACTIVE
This commit is contained in:
parent
27a684aa60
commit
2d3d047fd6
@ -72,7 +72,7 @@ void priority_queue_add(priority_queue_t *root, priority_queue_node_t *new_obj)
|
||||
new_obj->next = NULL;
|
||||
}
|
||||
|
||||
#if ENABLE_DEBUG
|
||||
#if IS_ACTIVE(ENABLE_DEBUG)
|
||||
void priority_queue_print(priority_queue_t *root)
|
||||
{
|
||||
printf("queue:\n");
|
||||
|
Loading…
Reference in New Issue
Block a user