From ab196aebe41469fb7ff364cf49dc5b3b9efa8870 Mon Sep 17 00:00:00 2001 From: Petro Karashchenko Date: Thu, 9 Mar 2023 10:03:22 +0200 Subject: [PATCH] include/nuttx/mm: remove FAR from non-pointer types Signed-off-by: Petro Karashchenko --- include/nuttx/mm/mempool.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/nuttx/mm/mempool.h b/include/nuttx/mm/mempool.h index fee3447a836..2f4648035f2 100644 --- a/include/nuttx/mm/mempool.h +++ b/include/nuttx/mm/mempool.h @@ -119,7 +119,7 @@ struct mempool_s #if CONFIG_MM_BACKTRACE >= 0 struct mempool_backtrace_s { - FAR struct list_node node; + struct list_node node; pid_t pid; # if CONFIG_MM_BACKTRACE > 0 FAR void *backtrace[CONFIG_MM_BACKTRACE];