1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2026-01-01 01:41:18 +01:00

Merge pull request #5672 from kaspar030/fix_clist_lpeek

core: clist: clist_lpeek(): add missing return statement
This commit is contained in:
Kaspar Schleiser 2016-07-20 23:08:20 +02:00 committed by GitHub
commit 8631544460

View File

@ -197,6 +197,7 @@ static inline clist_node_t *clist_lpeek(const clist_node_t *list)
if (list->next) {
return list->next->next;
}
return NULL;
}
/**