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:
parent
f520a221ab
commit
b2a022baff
1 changed files with 1 additions and 1 deletions
|
@ -4194,7 +4194,7 @@ struct k_mem_pool {
|
||||||
.flags = SYS_MEM_POOL_KERNEL \
|
.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.
|
* @brief Allocate memory from a memory pool.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue