From 6568f70bd826ba1b49c28d8709934fb5db18d0a3 Mon Sep 17 00:00:00 2001 From: Giovanni Di Sirio Date: Sun, 1 Oct 2017 12:07:01 +0000 Subject: Fixed bug #888. git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@10726 35acf78f-673a-0410-8e92-d51de3d6d3f4 --- test/rt/configuration.xml | 5 +++-- test/rt/source/test/test_sequence_010.c | 3 ++- 2 files changed, 5 insertions(+), 3 deletions(-) (limited to 'test/rt') diff --git a/test/rt/configuration.xml b/test/rt/configuration.xml index 420a96d93..3c697723e 100644 --- a/test/rt/configuration.xml +++ b/test/rt/configuration.xml @@ -3547,10 +3547,11 @@ static MEMORYPOOL_DECL(mp1, sizeof (uint32_t), NULL); static GUARDEDMEMORYPOOL_DECL(gmp1, sizeof (uint32_t)); #endif -static void *null_provider(size_t size, unsigned align) { +static void *null_provider(size_t size, unsigned align, size_t offset) { (void)size; - (void)align; + (void)align; + (void)offset; return NULL; }]]> diff --git a/test/rt/source/test/test_sequence_010.c b/test/rt/source/test/test_sequence_010.c index 1a5833778..58ed0b73e 100644 --- a/test/rt/source/test/test_sequence_010.c +++ b/test/rt/source/test/test_sequence_010.c @@ -58,10 +58,11 @@ static MEMORYPOOL_DECL(mp1, sizeof (uint32_t), NULL); static GUARDEDMEMORYPOOL_DECL(gmp1, sizeof (uint32_t)); #endif -static void *null_provider(size_t size, unsigned align) { +static void *null_provider(size_t size, unsigned align, size_t offset) { (void)size; (void)align; + (void)offset; return NULL; } -- cgit v1.2.3