Skip to content

Commit a3742aa

Browse files
committed
Fix compiler warning
1 parent b08d489 commit a3742aa

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

source/FreeRTOS_IP_Utils.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1837,6 +1837,8 @@ void vReleaseSinglePacketFromUDPSocket( const ConstSocket_t xSocket )
18371837
/* Passing the address of a pointer (pucUDPPayload) because FREERTOS_ZERO_COPY is used. */
18381838
lBytes = FreeRTOS_recvfrom( xSocket, &pucUDPPayload, 0U, FREERTOS_ZERO_COPY, NULL, NULL );
18391839

1840+
( void ) lBytes;
1841+
18401842
if( pucUDPPayload != NULL )
18411843
{
18421844
FreeRTOS_ReleaseUDPPayloadBuffer( pucUDPPayload );

0 commit comments

Comments
 (0)