Uncrustify: triggered by comment.

This commit is contained in:
GitHub Action 2024-02-06 23:49:23 +00:00
parent 3ba910ca33
commit 3ebec2c9ce

View file

@ -365,19 +365,19 @@ typedef struct xLIST
\
/* Insert a new list item into ( pxList ), but rather than sort the list, \
* makes the new list item the last item to be removed by a call to \
* listGET_OWNER_OF_NEXT_ENTRY(). */ \
( pxNewListItem )->pxNext = pxIndex; \
( pxNewListItem )->pxPrevious = pxIndex->pxPrevious; \
\
pxIndex->pxPrevious->pxNext = ( pxNewListItem ); \
pxIndex->pxPrevious = ( pxNewListItem ); \
\
/* Remember which list the item is in. */ \
( pxNewListItem )->pxContainer = ( pxList ); \
\
UBaseType_t uxNumberOfItems = ( ( pxList )->uxNumberOfItems ); \
uxNumberOfItems++; \
( ( pxList )->uxNumberOfItems ) = uxNumberOfItems; \
* listGET_OWNER_OF_NEXT_ENTRY(). */ \
( pxNewListItem )->pxNext = pxIndex; \
( pxNewListItem )->pxPrevious = pxIndex->pxPrevious; \
\
pxIndex->pxPrevious->pxNext = ( pxNewListItem ); \
pxIndex->pxPrevious = ( pxNewListItem ); \
\
/* Remember which list the item is in. */ \
( pxNewListItem )->pxContainer = ( pxList ); \
\
UBaseType_t uxNumberOfItems = ( ( pxList )->uxNumberOfItems ); \
uxNumberOfItems++; \
( ( pxList )->uxNumberOfItems ) = uxNumberOfItems; \
} while( 0 )
/*