Skip to content

Commit

Permalink
Merge branch 'contrib/github_pr_10329' into 'master'
Browse files Browse the repository at this point in the history
Fix type of cast (GitHub PR)

Closes IDFGH-8910

See merge request espressif/esp-idf!21517
  • Loading branch information
mahavirj committed Dec 11, 2022
2 parents 936a69d + 2d047f5 commit c4c904c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/esp_http_server/src/httpd_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

Expand Down

0 comments on commit c4c904c

Please sign in to comment.