Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FreeRTOS/FreeRTOS-Kernel.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLegend <me@liux.pro>2023-11-29 18:32:30 +0300
committerGitHub <noreply@github.com>2023-11-29 18:32:30 +0300
commit592bfe0e015ded4acf431482c646821a9efe6d62 (patch)
tree8852aa79abe085d6398e8d8fe27d6c7c97ff438b /portable
parent6a9f5a244a75ddec0017a7dda55f0f5323c67723 (diff)
Fix typo in comment (#910)
Co-authored-by: Tony Josi <tonyjosi@amazon.com> Co-authored-by: Soren Ptak <ptaksoren@gmail.com> Co-authored-by: Rahul Kar <118818625+kar-rahul-aws@users.noreply.github.com> Co-authored-by: Nikhil Kamath <110539926+amazonKamath@users.noreply.github.com>
Diffstat (limited to 'portable')
-rw-r--r--portable/MemMang/heap_5.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/portable/MemMang/heap_5.c b/portable/MemMang/heap_5.c
index 127b28f5e..18234626a 100644
--- a/portable/MemMang/heap_5.c
+++ b/portable/MemMang/heap_5.c
@@ -214,7 +214,7 @@ void * pvPortMalloc( size_t xWantedSize )
size_t xAdditionalRequiredSize;
/* The heap must be initialised before the first call to
- * prvPortMalloc(). */
+ * pvPortMalloc(). */
configASSERT( pxEnd );
if( xWantedSize > 0 )