Skip to content

Commit

Permalink
Fix -Werror=unused-parameter in GCC posix prvTimerTickHandler()
Browse files Browse the repository at this point in the history
  • Loading branch information
tony-josi-aws committed Jan 12, 2024
1 parent 3baa3dd commit 37afa26
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions portable/ThirdParty/GCC/Posix/port.c
Original file line number Diff line number Diff line change
Expand Up @@ -381,6 +381,8 @@ static uint64_t prvGetTimeNs( void )

static void * prvTimerTickHandler( void * arg )
{
( void ) arg;

while( xTimerTickThreadShouldRun )
{
/*
Expand Down

0 comments on commit 37afa26

Please sign in to comment.