Skip to content

Commit

Permalink
Merge pull request #5672 from kaspar030/fix_clist_lpeek
Browse files Browse the repository at this point in the history
core: clist: clist_lpeek(): add missing return statement
  • Loading branch information
kaspar030 committed Jul 20, 2016
2 parents fef429e + 7a3c63f commit 8631544
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions core/include/clist.h
Expand Up @@ -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;
}

/**
Expand Down

0 comments on commit 8631544

Please sign in to comment.