diff --git a/include/nuttx/list.h b/include/nuttx/list.h index d7a66fa1a7b..4361e7ee168 100644 --- a/include/nuttx/list.h +++ b/include/nuttx/list.h @@ -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)\ {\