From b67980cc2ce9cad3c8274498a6658b75c4a52111 Mon Sep 17 00:00:00 2001 From: Gabriel Staples Date: Wed, 8 May 2024 15:34:59 -0700 Subject: [PATCH] list.c: add comment --- list.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/list.c b/list.c index 05f26a683..5e8649a16 100644 --- a/list.c +++ b/list.c @@ -201,7 +201,9 @@ void vListInsert( List_t * const pxList, for( pxIterator = ( ListItem_t * ) &( pxList->xListEnd ); pxIterator->pxNext->xItemValue <= xValueOfInsertion; pxIterator = pxIterator->pxNext ) { /* There is nothing to do here, just iterating to the wanted - * insertion position. */ + * insertion position. + * IF YOU FIND YOUR CODE STUCK HERE, SEE THE NOTE JUST ABOVE. + */ } }