Don't ignore return value of httpd_stop

This commit is contained in:
Nathan Phillips
2022-04-22 11:19:27 +01:00
committed by BOT
parent 523c51818c
commit e8e63a06e8
10 changed files with 34 additions and 40 deletions

View File

@@ -306,7 +306,7 @@ esp_err_t httpd_ssl_start(httpd_handle_t *pHandle, struct httpd_ssl_config *conf
}
/** Stop the server */
void httpd_ssl_stop(httpd_handle_t handle)
esp_err_t httpd_ssl_stop(httpd_handle_t handle)
{
httpd_stop(handle);
return httpd_stop(handle);
}