Merge pull request #1461 from bupleurum/patch-1

[kernel] Fix misspellings in rtservice.h
This commit is contained in:
Bernard Xiong 2018-05-21 20:29:20 +08:00 committed by GitHub
commit e6cbf2dee3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

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))