Skip to content

Commit

Permalink
fix unused variables
Browse files Browse the repository at this point in the history
  • Loading branch information
tony-josi-aws committed Oct 31, 2023
1 parent 28bb905 commit ae12fc1
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions source/FreeRTOS_IP.c
Original file line number Diff line number Diff line change
Expand Up @@ -268,8 +268,11 @@ static void prvProcessIPEventsAndTimers( void )
TickType_t xNextIPSleep;
FreeRTOS_Socket_t * pxSocket;
struct freertos_sockaddr xAddress;
BaseType_t xCurQueueIndex = ipconfigEVENT_QUEUES - 1;
BaseType_t xQueueReceiveRet;

#if ( ipconfigMULTI_PRIORITY_EVENT_QUEUES == 1 )
BaseType_t xQueueReceiveRet;
BaseType_t xCurQueueIndex = ipconfigEVENT_QUEUES - 1;
#endif

ipconfigWATCHDOG_TIMER();

Expand Down

0 comments on commit ae12fc1

Please sign in to comment.