mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-01-17 10:12:45 +01:00
core: clist: clist_lpeek(): add missing return statement
This commit is contained in:
parent
fef429e16b
commit
7a3c63fddb
@ -197,6 +197,7 @@ static inline clist_node_t *clist_lpeek(const clist_node_t *list)
|
|||||||
if (list->next) {
|
if (list->next) {
|
||||||
return list->next->next;
|
return list->next->next;
|
||||||
}
|
}
|
||||||
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
Reference in New Issue
Block a user