aboutsummaryrefslogtreecommitdiffstats
path: root/src/chmempools.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/chmempools.c')
-rw-r--r--src/chmempools.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/chmempools.c b/src/chmempools.c
index 52914b7c6..ae97648a4 100644
--- a/src/chmempools.c
+++ b/src/chmempools.c
@@ -43,7 +43,8 @@ void chPoolInit(MemoryPool *mp, size_t size) {
/**
* Allocates an object from a memory pool.
* @param mp pointer to a \p MemoryPool structure
- * @return the pointer to the allocated object or \p NULL if pool is empty
+ * @return The pointer to the allocated object.
+ * @retval NULL if pool is empty.
*/
void *chPoolAlloc(MemoryPool *mp) {
void *objp;