summaryrefslogtreecommitdiff
path: root/nuttx/crypto/testmngr.c
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2014-08-31 17:34:44 -0600
committerGregory Nutt <gnutt@nuttx.org>2014-08-31 17:34:44 -0600
commitf8d20db23e41f2cb8f1e99f8f4f7965c215c9677 (patch)
tree45c7a57c201427409d0f4b78c803d6e240f79f43 /nuttx/crypto/testmngr.c
parent306de6c62392400107ea8a9d6e3aa13dd202b742 (diff)
downloadnuttx-f8d20db23e41f2cb8f1e99f8f4f7965c215c9677.tar.gz
nuttx-f8d20db23e41f2cb8f1e99f8f4f7965c215c9677.tar.bz2
nuttx-f8d20db23e41f2cb8f1e99f8f4f7965c215c9677.zip
Reanem kzalloc to kmm_zalloc for consistency
Diffstat (limited to 'nuttx/crypto/testmngr.c')
-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 464f0fdc0..f9f6a8b4f 100644
--- a/nuttx/crypto/testmngr.c
+++ b/nuttx/crypto/testmngr.c
@@ -62,7 +62,7 @@
static int do_test_aes(FAR struct cipher_testvec* test, int mode, int encrypt)
{
- FAR void *out = kzalloc(test->rlen);
+ FAR void *out = kmm_zalloc(test->rlen);
int res = aes_cypher(out, test->input, test->ilen, test->iv, test->key,
test->klen, mode, encrypt);
if (res == OK)