From 47e770dfface00af2e49c730a246d120b27a25e4 Mon Sep 17 00:00:00 2001 From: goldsimon Date: Mon, 11 Jan 2010 09:49:31 +0000 Subject: [PATCH] Fixed comment on struct mem.prev --- src/core/mem.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/mem.c b/src/core/mem.c index 7928e3bf..16aee8a7 100644 --- a/src/core/mem.c +++ b/src/core/mem.c @@ -154,7 +154,7 @@ mem_free(void *rmem) struct mem { /** index (-> ram[next]) of the next struct */ mem_size_t next; - /** index (-> ram[next]) of the next struct */ + /** index (-> ram[prev]) of the previous struct */ mem_size_t prev; /** 1: this area is used; 0: this area is unused */ u8_t used;