summaryrefslogtreecommitdiff
path: root/nuttx/binfmt
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2014-08-31 15:27:37 -0600
committerGregory Nutt <gnutt@nuttx.org>2014-08-31 15:27:37 -0600
commit81baf55fd8f4e860516cdfbaa5db2d74b5289bfd (patch)
tree9de6444939105ffd3aed81aede004f6ba0daf616 /nuttx/binfmt
parentbdf39bd497954930d2176540594f2e0d046a31af (diff)
downloadnuttx-81baf55fd8f4e860516cdfbaa5db2d74b5289bfd.tar.gz
nuttx-81baf55fd8f4e860516cdfbaa5db2d74b5289bfd.tar.bz2
nuttx-81baf55fd8f4e860516cdfbaa5db2d74b5289bfd.zip
Rename kmemalign to kmm_memalign and krealloc to kmm_realooc for consistency with other naming
Diffstat (limited to 'nuttx/binfmt')
-rw-r--r--nuttx/binfmt/libelf/libelf_iobuffer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/nuttx/binfmt/libelf/libelf_iobuffer.c b/nuttx/binfmt/libelf/libelf_iobuffer.c
index 14a365d69..3e27c73e3 100644
--- a/nuttx/binfmt/libelf/libelf_iobuffer.c
+++ b/nuttx/binfmt/libelf/libelf_iobuffer.c
@@ -120,7 +120,7 @@ int elf_reallocbuffer(FAR struct elf_loadinfo_s *loadinfo, size_t increment)
/* And perform the reallocation */
- buffer = krealloc((FAR void *)loadinfo->iobuffer, newsize);
+ buffer = kmm_realloc((FAR void *)loadinfo->iobuffer, newsize);
if (!buffer)
{
bdbg("Failed to reallocate the I/O buffer\n");