Update rtservice.h

This commit is contained in:
bupleurum
2018-05-21 19:41:13 +08:00
committed by GitHub
parent 3a6eace914
commit 3af13de6a5
+1 -1
View File
@@ -250,7 +250,7 @@ rt_inline int rt_slist_isempty(rt_slist_t *l)
* @head: the head for your single list.
* @member: the name of the list_struct within the struct.
*/
#define rt_slist_fore_each_entry(pos, head, member) \
#define rt_slist_for_each_entry(pos, head, member) \
for (pos = rt_slist_entry((head)->next, typeof(*pos), member); \
&pos->member != (RT_NULL); \
pos = rt_slist_entry(pos->member.next, typeof(*pos), member))