1
0
mirror of https://github.com/Mbed-TLS/mbedtls.git synced 2025-12-24 17:41:01 +03:00

Add missing semicolon

Signed-off-by: Thomas Daubney <thomas.daubney@arm.com>
This commit is contained in:
Thomas Daubney
2024-03-12 17:53:30 +00:00
parent 4fef9337a9
commit ca92831a60

View File

@@ -5464,7 +5464,7 @@ psa_status_t psa_key_derivation_key_agreement(psa_key_derivation_operation_t *op
return status;
}
LOCAL_INPUT_ALLOC(peer_key_external, peer_key_length, peer_key)
LOCAL_INPUT_ALLOC(peer_key_external, peer_key_length, peer_key);
status = psa_key_agreement_internal(operation, step,
slot,
peer_key, peer_key_length);