Skip to content

Commit 783ff22

Browse files
committed
fix(esp_http_client): update code format for API
This commit update code format as per IDF standard for API esp_http_client_get_and_clear_last_tls_error().
1 parent 30c2907 commit 783ff22

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

components/esp_http_client/esp_http_client.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1209,7 +1209,8 @@ int esp_http_client_get_errno(esp_http_client_handle_t client)
12091209
return esp_transport_get_errno(client->transport);
12101210
}
12111211

1212-
esp_err_t esp_http_client_get_and_clear_last_tls_error(esp_http_client_handle_t client, int *tls_code, int *tls_flags){
1212+
esp_err_t esp_http_client_get_and_clear_last_tls_error(esp_http_client_handle_t client, int *tls_code, int *tls_flags)
1213+
{
12131214
if (!client) {
12141215
ESP_LOGE(TAG, "Invalid client handle");
12151216
return ESP_FAIL;

0 commit comments

Comments
 (0)