aboutsummaryrefslogtreecommitdiffstats
path: root/os/common/oslib/src/chmempools.c
diff options
context:
space:
mode:
Diffstat (limited to 'os/common/oslib/src/chmempools.c')
-rw-r--r--os/common/oslib/src/chmempools.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/os/common/oslib/src/chmempools.c b/os/common/oslib/src/chmempools.c
index fe08c45cf..384e2f7ee 100644
--- a/os/common/oslib/src/chmempools.c
+++ b/os/common/oslib/src/chmempools.c
@@ -130,7 +130,7 @@ void *chPoolAllocI(memory_pool_t *mp) {
mp->next = mp->next->next;
}
else if (mp->provider != NULL) {
- objp = mp->provider(mp->object_size, PORT_NATURAL_ALIGN, 0U); /* TODO: Alignment is not properly handled */
+ objp = mp->provider(mp->object_size, PORT_NATURAL_ALIGN); /* TODO: Alignment is not properly handled */
}
/*lint -restore*/