Fix comment typos

This commit is contained in:
YAMAMOTO Takashi
2020-02-12 20:39:47 -06:00
committed by patacongo
parent 22d002762b
commit 710da6022d
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -266,8 +266,8 @@ FAR void *mm_realloc(FAR struct mm_heap_s *heap, FAR void *oldmem,
oldnode = newnode;
oldsize = newnode->size;
/* Now we have to move the user contents 'down' in memory. memcpy should
* should be save for this.
/* Now we have to move the user contents 'down' in memory. memcpy
* should be safe for this.
*/
newmem = (FAR void *)((FAR char *)newnode + SIZEOF_MM_ALLOCNODE);