diff options
author | Giovanni Di Sirio <gdisirio@gmail.com> | 2018-04-27 07:34:15 +0000 |
---|---|---|
committer | Giovanni Di Sirio <gdisirio@gmail.com> | 2018-04-27 07:34:15 +0000 |
commit | 837f2cd0fd066a1a4ee1fe299aac42b7816c7e29 (patch) | |
tree | 7ecb1e13cf6e5f3f593e9129195dd0e33dcecca4 /os/lib/src | |
parent | f6c360002daa5b9c18386f5d14ce22d3184a7b3f (diff) | |
download | ChibiOS-837f2cd0fd066a1a4ee1fe299aac42b7816c7e29.tar.gz ChibiOS-837f2cd0fd066a1a4ee1fe299aac42b7816c7e29.tar.bz2 ChibiOS-837f2cd0fd066a1a4ee1fe299aac42b7816c7e29.zip |
Added const modifiers where required, replace NULL with nullptr, minor documentation fixes.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@11955 110e8d01-0319-4d1e-a829-52ad28d1bb01
Diffstat (limited to 'os/lib/src')
-rw-r--r-- | os/lib/src/chmemheaps.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/os/lib/src/chmemheaps.c b/os/lib/src/chmemheaps.c index ebbd46bad..fc01b7ccc 100644 --- a/os/lib/src/chmemheaps.c +++ b/os/lib/src/chmemheaps.c @@ -347,9 +347,9 @@ void chHeapFree(void *p) { * @param[in] heapp pointer to a heap descriptor or @p NULL in order to
* access the default heap.
* @param[in] totalp pointer to a variable that will receive the total
- * fragmented free space or @ NULL
+ * fragmented free space or @p NULL
* @param[in] largestp pointer to a variable that will receive the largest
- * free free block found space or @ NULL
+ * free free block found space or @p NULL
* @return The number of fragments in the heap.
*
* @api
|