aboutsummaryrefslogtreecommitdiffstats
path: root/src/chheap.c
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2008-09-24 11:55:40 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2008-09-24 11:55:40 +0000
commitb72177007695129c089c58f65d05ae6178f604a3 (patch)
tree105973ae8132ba54df94ce7f997010583d48a811 /src/chheap.c
parent56c0992fe6abb5b06f74f8518eb07b9bc63eac99 (diff)
downloadChibiOS-b72177007695129c089c58f65d05ae6178f604a3.tar.gz
ChibiOS-b72177007695129c089c58f65d05ae6178f604a3.tar.bz2
ChibiOS-b72177007695129c089c58f65d05ae6178f604a3.zip
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@441 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'src/chheap.c')
-rw-r--r--src/chheap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/chheap.c b/src/chheap.c
index e8ce605c7..7a2f0ccac 100644
--- a/src/chheap.c
+++ b/src/chheap.c
@@ -150,7 +150,7 @@ void chHeapFree(void *p) {
hp = (struct header *)p - 1;
- chDbgAssert(hp->h_magig == MAGIC, "chheap.c, chHeapFree() #1");
+ chDbgAssert(hp->h_magic == MAGIC, "chheap.c, chHeapFree() #1");
qp = &heap.free;
H_LOCK();