MISRA Rule 13.3 Fixes

This commit is contained in:
bjbsmith 2024-01-24 11:26:36 -08:00 committed by bradleysmith23
parent ba1e2dad3c
commit 4b63ff8f28
3 changed files with 13 additions and 14 deletions

View file

@ -326,7 +326,7 @@ typedef struct xLIST
} \
\
( pxItemToRemove )->pxContainer = NULL; \
( pxList->uxNumberOfItems )--; \
pxList->uxNumberOfItems -= 1U; \
} while( 0 )
/*
@ -373,7 +373,7 @@ typedef struct xLIST
/* Remember which list the item is in. */ \
( pxNewListItem )->pxContainer = ( pxList ); \
\
( ( pxList )->uxNumberOfItems )++; \
( pxList )->uxNumberOfItems += 1U; \
} while( 0 )
/*