From 9f678ede69b9e2945a528906c182912ce24b8fb9 Mon Sep 17 00:00:00 2001 From: didier Date: Thu, 16 Oct 2025 12:53:15 +0200 Subject: [PATCH] fix type warning --- common/mbedtls/cmac.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/mbedtls/cmac.c b/common/mbedtls/cmac.c index db4a71d7..d8738c50 100644 --- a/common/mbedtls/cmac.c +++ b/common/mbedtls/cmac.c @@ -427,7 +427,7 @@ exit: */ int mbedtls_aes_cmac_prf_128( const unsigned char *key, size_t key_length, const unsigned char *input, size_t in_len, - unsigned char *output ) + unsigned char output[16] ) { int ret; const mbedtls_cipher_info_t *cipher_info;