aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/chmempools.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/chmempools.c b/src/chmempools.c
index f052bb1e2..3fc4d0352 100644
--- a/src/chmempools.c
+++ b/src/chmempools.c
@@ -37,7 +37,7 @@
void chPoolInit(MemoryPool *mp, size_t size) {
chDbgAssert((mp != NULL) && (size >= sizeof(void *)),
- "chpools.c, chPoolFree()");
+ "chpools.c, chPoolInit()");
mp->mp_next = NULL;
mp->mp_object_size = size;