From 0e1d31bf06458ec3e9df4c68e11114c9c270203a Mon Sep 17 00:00:00 2001 From: gabor-mezei-arm Date: Fri, 25 Jun 2021 15:44:47 +0200 Subject: [PATCH] Typo Signed-off-by: gabor-mezei-arm --- library/psa_crypto_cipher.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/library/psa_crypto_cipher.c b/library/psa_crypto_cipher.c index 3ec5ec241..b9bceff83 100644 --- a/library/psa_crypto_cipher.c +++ b/library/psa_crypto_cipher.c @@ -463,8 +463,8 @@ static psa_status_t cipher_encrypt( const psa_key_attributes_t *attributes, mbedtls_psa_cipher_operation_t operation = MBEDTLS_PSA_CIPHER_OPERATION_INIT; size_t olength, accumulated_length; - status = cipher_encrypt_setup( &operation, attributes, - key_buffer, key_buffer_size, alg ); + status = cipher_encrypt_setup( &operation, attributes, + key_buffer, key_buffer_size, alg ); if( status != PSA_SUCCESS ) goto exit;