summaryrefslogtreecommitdiffstats
path: root/src/core/malloc.c
diff options
context:
space:
mode:
authorMichael Brown2007-01-12 02:37:38 +0100
committerMichael Brown2007-01-12 02:37:38 +0100
commit6c894c2a2e691d976600385d2015828f6a19b717 (patch)
tree69eb89f8bc695a3aacbdcb27fa379757daefdb20 /src/core/malloc.c
parentWe may be required to page-align modules, so let's make sure we catch (diff)
downloadipxe-6c894c2a2e691d976600385d2015828f6a19b717.tar.gz
ipxe-6c894c2a2e691d976600385d2015828f6a19b717.tar.xz
ipxe-6c894c2a2e691d976600385d2015828f6a19b717.zip
Fix typo
Diffstat (limited to 'src/core/malloc.c')
-rw-r--r--src/core/malloc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/malloc.c b/src/core/malloc.c
index 085080fc..bb34db31 100644
--- a/src/core/malloc.c
+++ b/src/core/malloc.c
@@ -286,7 +286,7 @@ void * malloc ( size_t size ) {
/**
* Free memory
*
- * @v size Memory allocated by malloc(), or NULL
+ * @v ptr Memory allocated by malloc(), or NULL
*
* Memory allocated with malloc_dma() cannot be freed with free(); it
* must be freed with free_dma() instead.