tests: suite_x509parse: fix indentation in x509parse_crt()

Signed-off-by: Valerio Setti <valerio.setti@nordicsemi.no>
This commit is contained in:
Valerio Setti
2025-06-19 23:19:05 +02:00
parent 1e4423bcfa
commit 210b61111b

View File

@@ -1118,11 +1118,11 @@ exit:
void x509parse_crt(data_t *buf, char *result_str, int result)
{
mbedtls_x509_crt crt;
#if !defined(MBEDTLS_X509_REMOVE_INFO)
#if !defined(MBEDTLS_X509_REMOVE_INFO)
unsigned char output[2000] = { 0 };
#else
#else
((void) result_str);
#endif
#endif
/* Pick an error which is not used in the test_suite_x509parse.data file. */
int result_ext = MBEDTLS_ERR_ERROR_GENERIC_ERROR;
int res;