summaryrefslogtreecommitdiff
path: root/nuttx/mm
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2008-01-09 22:53:52 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2008-01-09 22:53:52 +0000
commit27bf9aa3312963e45f4721661ac1911d08ffc70a (patch)
tree701cdfce10e34e97b3d3d09e2f8148f9c648fb2b /nuttx/mm
parenta2c6c96d13de37908120dcae297530665836f8e8 (diff)
downloadpx4-nuttx-27bf9aa3312963e45f4721661ac1911d08ffc70a.tar.gz
px4-nuttx-27bf9aa3312963e45f4721661ac1911d08ffc70a.tar.bz2
px4-nuttx-27bf9aa3312963e45f4721661ac1911d08ffc70a.zip
Compiles with ZDS-II
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@540 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/mm')
-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);