From 3ebec2c9ce783607ec3a81c95702aede4f288b8d Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 6 Feb 2024 23:49:23 +0000 Subject: [PATCH] Uncrustify: triggered by comment. --- include/list.h | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/include/list.h b/include/list.h index 8bea1f7be..bb91220b5 100644 --- a/include/list.h +++ b/include/list.h @@ -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 ) /*