1
0
mirror of https://github.com/FreeRTOS/FreeRTOS-Plus-TCP synced 2025-10-20 04:54:36 +08:00

Misra: Fix Rule 8.13 violations (#507)

* MISRA: fix rule 8.13 violations

* Fix more 8.3 rules violation

* Misra rule 8.13 fixes

* Fix Unit Test
This commit is contained in:
alfred gedeon
2022-07-08 19:06:10 +02:00
committed by GitHub
parent 58e9e54070
commit 6b84c44e07
19 changed files with 60 additions and 60 deletions

View File

@@ -518,7 +518,7 @@
int32_t lOffset, lStored;
BaseType_t xResult = 0;
uint32_t ulRxLength = ulReceiveLength;
uint8_t * pucRxBuffer = &( pucRecvData[ 0 ] );
const uint8_t * pucRxBuffer = &( pucRecvData[ 0 ] );
ulSequenceNumber = FreeRTOS_ntohl( pxTCPHeader->ulSequenceNumber );