Skip to content

Commit

Permalink
fix unupdated symbol name
Browse files Browse the repository at this point in the history
  • Loading branch information
fritzprix committed May 15, 2016
1 parent 3b7c501 commit ccf5963
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/cdsl_slist.h
Original file line number Diff line number Diff line change
@@ -16,7 +16,7 @@ extern "C" {
#endif


#define cdsl_slistIsEmpty(node) (((slistEntry_t*) node)->next == NULL)
#define cdsl_slistIsEmpty(node) (((slistEntry_t*) node)->head == NULL)

#define cdsl_slistSize(lentry) cdsl_listSize((listEntry_t*) lentry)
#define cdsl_slistContain(lentry, item) cdsl_listContain((listEntry_t*) lentry, (listNode_t*) item)

0 comments on commit ccf5963

Please sign in to comment.