K_MEM_POOL_DEFINE(): remove extra semicolon

Commit 223a2b950f ("mempool: move BUILD_ASSERT to the end of
K_MEM_POOL_DEFINE") left a redundant semicolon at the end.

Signed-off-by: Nicolas Pitre <npitre@baylibre.com>
This commit is contained in:
Nicolas Pitre 2019-09-26 16:36:40 -04:00 committed by Andrew Boie
commit b2a022baff

View file

@ -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.