aboutsummaryrefslogtreecommitdiffstats
path: root/test/rt/source
diff options
context:
space:
mode:
authorGiovanni Di Sirio <gdisirio@gmail.com>2017-10-01 19:23:02 +0000
committerGiovanni Di Sirio <gdisirio@gmail.com>2017-10-01 19:23:02 +0000
commit23c7476ac4f0ebfc7b09d9858149d9bf79f1122e (patch)
tree2480580f82d813952d9327846bdfbb0f688e4c7f /test/rt/source
parentcc61794d1a00a74f31c650522988a2f327b6cfab (diff)
downloadChibiOS-23c7476ac4f0ebfc7b09d9858149d9bf79f1122e.tar.gz
ChibiOS-23c7476ac4f0ebfc7b09d9858149d9bf79f1122e.tar.bz2
ChibiOS-23c7476ac4f0ebfc7b09d9858149d9bf79f1122e.zip
Changed my mind, modified types.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@10742 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'test/rt/source')
-rw-r--r--test/rt/source/test/test_sequence_010.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/test/rt/source/test/test_sequence_010.c b/test/rt/source/test/test_sequence_010.c
index 58ed0b73e..1a5833778 100644
--- a/test/rt/source/test/test_sequence_010.c
+++ b/test/rt/source/test/test_sequence_010.c
@@ -58,11 +58,10 @@ 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, size_t offset) {
+static void *null_provider(size_t size, unsigned align) {
(void)size;
(void)align;
- (void)offset;
return NULL;
}