aboutsummaryrefslogtreecommitdiffstats
path: root/test/rt/testpools.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/rt/testpools.c')
-rw-r--r--test/rt/testpools.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/rt/testpools.c b/test/rt/testpools.c
index 0e11eb084..9eed0c3e9 100644
--- a/test/rt/testpools.c
+++ b/test/rt/testpools.c
@@ -57,9 +57,10 @@ static MEMORYPOOL_DECL(mp1, THD_WORKING_AREA_SIZE(THREADS_STACK_SIZE), NULL);
* operation.
*/
-static void *null_provider(size_t size) {
+static void *null_provider(size_t size, unsigned align) {
(void)size;
+ (void)align;
return NULL;
}