From 0d46786034d3b31299e43a9706bfaafade25eb01 Mon Sep 17 00:00:00 2001 From: Neil Armstrong Date: Thu, 24 Feb 2022 15:18:05 +0100 Subject: [PATCH] Fix style issue in rsa_decrypt_wrap() Signed-off-by: Neil Armstrong --- library/pk_wrap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/pk_wrap.c b/library/pk_wrap.c index 66a62f82f6..9036e00bee 100644 --- a/library/pk_wrap.c +++ b/library/pk_wrap.c @@ -273,7 +273,7 @@ static int rsa_decrypt_wrap( void *ctx, } status = psa_asymmetric_decrypt( key_id, psa_sig_md, input, ilen, - NULL, 0, output, osize, olen); + NULL, 0, output, osize, olen ); if( status != PSA_SUCCESS ) { ret = mbedtls_psa_err_translate_pk( status );