From 35b249c3f5163243773296594b7214c4a593a2af Mon Sep 17 00:00:00 2001 From: Paul Bartell Date: Tue, 30 Jan 2024 13:00:44 -0800 Subject: [PATCH] Fix Build Combinaton CI job --- test/build-combination/Common/main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/build-combination/Common/main.c b/test/build-combination/Common/main.c index 331ad1a..f2c7bb4 100644 --- a/test/build-combination/Common/main.c +++ b/test/build-combination/Common/main.c @@ -78,12 +78,12 @@ int main( void ) void vApplicationGetIdleTaskMemory( StaticTask_t ** ppxIdleTaskTCBBuffer, StackType_t ** ppxIdleTaskStackBuffer, - uint32_t * pulIdleTaskStackSize ) + configSTACK_DEPTH_TYPE * puxIdleTaskStackSize ) { /* Provide a stub for this function. */ ( void ) ppxIdleTaskTCBBuffer; ( void ) ppxIdleTaskStackBuffer; - ( void ) pulIdleTaskStackSize; + ( void ) puxIdleTaskStackSize; } #endif /* if ( configSUPPORT_STATIC_ALLOCATION == 1 ) */