summaryrefslogtreecommitdiff
path: root/nuttx/fs/fs_fdopen.c
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2014-08-31 16:24:24 -0600
committerGregory Nutt <gnutt@nuttx.org>2014-08-31 16:24:24 -0600
commit229ba49e4c56097c393d2e5fa9e77de80ce55a75 (patch)
tree4842535e4d2e0c4ef983d6be8e33a68c3d74c554 /nuttx/fs/fs_fdopen.c
parent08835af3d68a4ea82ec32a5fe29608a6233eb9d9 (diff)
downloadpx4-nuttx-229ba49e4c56097c393d2e5fa9e77de80ce55a75.tar.gz
px4-nuttx-229ba49e4c56097c393d2e5fa9e77de80ce55a75.tar.bz2
px4-nuttx-229ba49e4c56097c393d2e5fa9e77de80ce55a75.zip
Rename kumalloc to kumm_malloc and kuzalloc to kumm_zalloc for consistency with other naming
Diffstat (limited to 'nuttx/fs/fs_fdopen.c')
-rw-r--r--nuttx/fs/fs_fdopen.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/nuttx/fs/fs_fdopen.c b/nuttx/fs/fs_fdopen.c
index 5356ae03d..3a474717f 100644
--- a/nuttx/fs/fs_fdopen.c
+++ b/nuttx/fs/fs_fdopen.c
@@ -228,7 +228,7 @@ FAR struct file_struct *fs_fdopen(int fd, int oflags, FAR struct tcb_s *tcb)
/* Allocate the IO buffer */
- stream->fs_bufstart = kumalloc(CONFIG_STDIO_BUFFER_SIZE);
+ stream->fs_bufstart = kumm_malloc(CONFIG_STDIO_BUFFER_SIZE);
if (!stream->fs_bufstart)
{
err = ENOMEM;