Add missing newline

Newline character was missing from end of print
statement.

Signed-off-by: Thomas Daubney <thomas.daubney@arm.com>
This commit is contained in:
Thomas Daubney 2023-10-11 15:28:13 +01:00
parent 1c2378b8b1
commit cd79f77439

View file

@ -107,7 +107,7 @@ int main(void)
status = psa_hash_clone(&hash_operation, &cloned_hash_operation);
if (status != PSA_SUCCESS) {
mbedtls_printf("PSA hash clone failed");
mbedtls_printf("PSA hash clone failed\n");
goto cleanup;
}