1
0
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:
Kaspar Schleiser 2016-07-20 22:25:48 +02:00
parent fef429e16b
commit 7a3c63fddb

View File

@ -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;
} }
/** /**