Merge branch 'contrib/github_pr_10329' into 'master'

Fix type of cast (GitHub PR)

Closes IDFGH-8910

See merge request espressif/esp-idf!21517
pull/10378/head
Mahavir Jain 2022-12-11 22:35:06 +08:00
commit c4c904c8ae
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -506,7 +506,7 @@ esp_err_t httpd_start(httpd_handle_t *handle, const httpd_config_t *config)
return ESP_ERR_HTTPD_TASK;
}
*handle = (httpd_handle_t *)hd;
*handle = (httpd_handle_t)hd;
return ESP_OK;
}