summaryrefslogtreecommitdiff
path: root/nuttx/crypto
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2014-08-31 17:04:02 -0600
committerGregory Nutt <gnutt@nuttx.org>2014-08-31 17:04:02 -0600
commit7482b7ad0f60724e593a8919783444ef79f4c79e (patch)
tree396e7019c35eb0f49f430c1132972eedc292a752 /nuttx/crypto
parent2ad3a4c2a2b56a721180faa3c689110d86d90359 (diff)
downloadpx4-nuttx-7482b7ad0f60724e593a8919783444ef79f4c79e.tar.gz
px4-nuttx-7482b7ad0f60724e593a8919783444ef79f4c79e.tar.bz2
px4-nuttx-7482b7ad0f60724e593a8919783444ef79f4c79e.zip
Rename kfree to kmm_free for consistency with other naming conventions
Diffstat (limited to 'nuttx/crypto')
-rw-r--r--nuttx/crypto/testmngr.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/nuttx/crypto/testmngr.c b/nuttx/crypto/testmngr.c
index d307599d0..464f0fdc0 100644
--- a/nuttx/crypto/testmngr.c
+++ b/nuttx/crypto/testmngr.c
@@ -70,7 +70,7 @@ static int do_test_aes(FAR struct cipher_testvec* test, int mode, int encrypt)
res = memcmp(out, test->result, test->rlen);
}
- kfree(out);
+ kmm_free(out);
return res;
}