From b2a022baff25856b97a3e3ba405bf551b132751a Mon Sep 17 00:00:00 2001 From: Nicolas Pitre Date: Thu, 26 Sep 2019 16:36:40 -0400 Subject: [PATCH] K_MEM_POOL_DEFINE(): remove extra semicolon Commit 223a2b950fc9 ("mempool: move BUILD_ASSERT to the end of K_MEM_POOL_DEFINE") left a redundant semicolon at the end. Signed-off-by: Nicolas Pitre --- include/kernel.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/kernel.h b/include/kernel.h index de4dd44fe22..02987822786 100644 --- a/include/kernel.h +++ b/include/kernel.h @@ -4194,7 +4194,7 @@ struct k_mem_pool { .flags = SYS_MEM_POOL_KERNEL \ } \ }; \ - BUILD_ASSERT(WB_UP(maxsz) >= _MPOOL_MINBLK); + BUILD_ASSERT(WB_UP(maxsz) >= _MPOOL_MINBLK) /** * @brief Allocate memory from a memory pool.