Skip to content

Commit c053ffe

Browse files
Fix -Werror=unused-parameter in GCC posix prvTimerTickHandler() (FreeRTOS#949)
1 parent 3baa3dd commit c053ffe

File tree

1 file changed

+2
-0
lines changed
  • portable/ThirdParty/GCC/Posix

1 file changed

+2
-0
lines changed

portable/ThirdParty/GCC/Posix/port.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -381,6 +381,8 @@ static uint64_t prvGetTimeNs( void )
381381

382382
static void * prvTimerTickHandler( void * arg )
383383
{
384+
( void ) arg;
385+
384386
while( xTimerTickThreadShouldRun )
385387
{
386388
/*

0 commit comments

Comments
 (0)