mirror of
https://github.com/FreeRTOS/FreeRTOS.git
synced 2025-06-18 22:33:36 +08:00
commit 2 after gary's comments
This commit is contained in:

committed by
Yuhui Zheng

parent
75677a8d85
commit
c381861014
@ -674,11 +674,7 @@ void vARPGenerateRequestPacket(NetworkBufferDescriptor_t* const pxNetworkBuffer)
|
||||
|
||||
void FreeRTOS_ClearARP(void)
|
||||
{
|
||||
/* Function requires the second argument to be an int.
|
||||
*
|
||||
* MISRA rule 17.7 relaxed. The return value is not
|
||||
* required to be used. Also improves readability */
|
||||
memset(xARPCache, (int)'\0', sizeof(xARPCache));
|
||||
memset(xARPCache, 0, sizeof(xARPCache));
|
||||
}
|
||||
/*-----------------------------------------------------------*/
|
||||
|
||||
|
Reference in New Issue
Block a user