From 5010828fb6039bb0741ade578dacac779785da23 Mon Sep 17 00:00:00 2001 From: Moran Peker Date: Mon, 16 Apr 2018 11:12:31 +0300 Subject: [PATCH] adjust indentation per Mbed TLS standards --- library/psa_crypto.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/psa_crypto.c b/library/psa_crypto.c index 57a392478..0fa400031 100644 --- a/library/psa_crypto.c +++ b/library/psa_crypto.c @@ -534,7 +534,7 @@ psa_status_t psa_export_public_key(psa_key_slot_t key, if( slot->type == PSA_KEY_TYPE_NONE ) return( PSA_ERROR_EMPTY_SLOT ); - if( !(PSA_KEY_TYPE_IS_PUBLIC_KEY( slot->type ) || PSA_KEY_TYPE_IS_KEYPAIR(slot->type)) ) + if( !( PSA_KEY_TYPE_IS_PUBLIC_KEY( slot->type ) || PSA_KEY_TYPE_IS_KEYPAIR(slot->type) ) ) return( PSA_ERROR_INVALID_ARGUMENT ); #if defined(MBEDTLS_PK_WRITE_C)