mirror of
https://github.com/apache/nuttx.git
synced 2026-06-04 14:53:47 +08:00
Rename kumalloc to kumm_malloc and kuzalloc to kumm_zalloc for consistency with other naming
This commit is contained in:
+1
-1
@@ -139,7 +139,7 @@ FAR void *rammap(int fd, size_t length, off_t offset)
|
||||
|
||||
/* Allocate a region of memory of the specified size */
|
||||
|
||||
alloc = (FAR uint8_t *)kumalloc(sizeof(struct fs_rammap_s) + length);
|
||||
alloc = (FAR uint8_t *)kumm_malloc(sizeof(struct fs_rammap_s) + length);
|
||||
if (!alloc)
|
||||
{
|
||||
fdbg("Region allocation failed, length: %d\n", (int)length);
|
||||
|
||||
Reference in New Issue
Block a user