Formatting fix

This commit is contained in:
bradleysmith23 2024-02-08 13:42:16 -08:00
parent 92bd6c5156
commit 0ae52db761

2
list.c
View file

@ -130,7 +130,7 @@ void vListInsertEnd( List_t * const pxList,
/* Remember which list the item is in. */
pxNewListItem->pxContainer = pxList;
(pxList->uxNumberOfItems ) += 1U;
( pxList->uxNumberOfItems ) += 1U;
traceRETURN_vListInsertEnd();
}