From aa3a6e4ea7b459739d463754ef9da6144cc85299 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bence=20Sz=C3=A9pk=C3=BAti?= Date: Thu, 13 Jan 2022 16:26:03 +0100 Subject: [PATCH] Fix brace placement MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Bence Szépkúti --- library/psa_crypto.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/library/psa_crypto.c b/library/psa_crypto.c index fdef24051..e021f8a19 100644 --- a/library/psa_crypto.c +++ b/library/psa_crypto.c @@ -3719,7 +3719,8 @@ static psa_status_t psa_aead_check_nonce_length( psa_algorithm_t alg, return( PSA_ERROR_INVALID_ARGUMENT ); } -static psa_status_t psa_aead_check_algorithm( psa_algorithm_t alg ) { +static psa_status_t psa_aead_check_algorithm( psa_algorithm_t alg ) +{ if( !PSA_ALG_IS_AEAD( alg ) || PSA_ALG_IS_WILDCARD( alg ) ) return( PSA_ERROR_INVALID_ARGUMENT );