mbedtls: remove newline from failf() call

Follow-up from 1dc6ddde06

Closes #20333
This commit is contained in:
Daniel Stenberg
2026-01-16 08:29:38 +01:00
parent 65714f8130
commit 7755df3a48

View File

@@ -1444,7 +1444,7 @@ static int mbedtls_init(void)
NULL, 0);
if(ret) {
failf(NULL, " failed\n ! mbedtls_ctr_drbg_seed returned -0x%x\n",
failf(NULL, "failed: mbedtls_ctr_drbg_seed returned -0x%x",
(unsigned int)-ret);
return 0;
}