1
0
mirror of https://github.com/Mbed-TLS/mbedtls.git synced 2025-11-02 09:33:20 +03:00

Fix code style (for real this time, hopefully)

For some reason I didn't think about other files in the previous commit.

Signed-off-by: Manuel Pégourié-Gonnard <manuel.pegourie-gonnard@arm.com>
This commit is contained in:
Manuel Pégourié-Gonnard
2024-09-02 12:41:05 +02:00
parent 4bc15d89cb
commit 9ec6d45e99
2 changed files with 7 additions and 6 deletions

View File

@@ -13,7 +13,7 @@ int mbedtls_codepath_check = MBEDTLS_MPI_IS_TEST;
void mbedtls_codepath_take_safe(void)
{
if(mbedtls_codepath_check == MBEDTLS_MPI_IS_TEST) {
if (mbedtls_codepath_check == MBEDTLS_MPI_IS_TEST) {
mbedtls_codepath_check = MBEDTLS_MPI_IS_SECRET;
}
}
@@ -36,4 +36,3 @@ void mbedtls_codepath_test_hooks_teardown(void)
}
#endif /* MBEDTLS_TEST_HOOKS && !MBEDTLS_THREADING_C */