diff options
| author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2008-09-24 11:55:40 +0000 |
|---|---|---|
| committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2008-09-24 11:55:40 +0000 |
| commit | b72177007695129c089c58f65d05ae6178f604a3 (patch) | |
| tree | 105973ae8132ba54df94ce7f997010583d48a811 /src/chheap.c | |
| parent | 56c0992fe6abb5b06f74f8518eb07b9bc63eac99 (diff) | |
| download | ChibiOS-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.c | 2 |
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();
|
