esp_tls: change argument pointer type to (void *) for esp_crt_bundle_attach

This commit is contained in:
Aditya Patwardhan
2020-03-11 15:48:34 +05:30
parent 59381b60c0
commit 874e987a3b
3 changed files with 6 additions and 6 deletions

View File

@@ -36,7 +36,7 @@ extern "C" {
* - ESP_OK if adding certificates was successful.
* - Other if an error occured or an action must be taken by the calling process.
*/
esp_err_t esp_crt_bundle_attach(mbedtls_ssl_config *conf);
esp_err_t esp_crt_bundle_attach(void *conf);
/**
@@ -64,4 +64,4 @@ void esp_crt_bundle_set(const uint8_t *x509_bundle);
}
#endif
#endif //_ESP_CRT_BUNDLE_H_
#endif //_ESP_CRT_BUNDLE_H_