nuttx/include: fix list.h type error

Signed-off-by: yinshengkai <yinshengkai@xiaomi.com>
This commit is contained in:
yinshengkai 2022-03-22 16:51:22 +08:00 committed by Petro Karashchenko
parent ad1098d413
commit cdabac7ab1

View File

@ -60,7 +60,7 @@
#define list_remove_tail_type(list, type, element) (\
{\
FAR struct list_node *__nod = list_remove_tail(list);\
FAR ype *__t;\
FAR type *__t;\
\
if(__nod)\
{\