summaryrefslogtreecommitdiff
path: root/nuttx/mm/mm_realloc.c
diff options
context:
space:
mode:
Diffstat (limited to 'nuttx/mm/mm_realloc.c')
-rw-r--r--nuttx/mm/mm_realloc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/nuttx/mm/mm_realloc.c b/nuttx/mm/mm_realloc.c
index d19e1c8dd..287ad2263 100644
--- a/nuttx/mm/mm_realloc.c
+++ b/nuttx/mm/mm_realloc.c
@@ -248,7 +248,7 @@ FAR void *realloc(FAR void *oldmem, size_t size)
newnode->preceding = prev->size | MM_ALLOC_BIT;
next->preceding = newnode->size | (next->preceding & MM_ALLOC_BIT);
- /* Return the previous free node to the nodelist (with the new size) */
+ /* Return the previous free node to the nodelist (with the new size) */
mm_addfreechunk(prev);