From ac5c028f9b4d78ab8952a01ffcc6d96f72d09354 Mon Sep 17 00:00:00 2001 From: XiaochaoGONG Date: Thu, 11 Apr 2019 17:32:55 +0800 Subject: [PATCH] bugfix --- examples/single_chip/camera_web_server/main/app_httpd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/single_chip/camera_web_server/main/app_httpd.c b/examples/single_chip/camera_web_server/main/app_httpd.c index cf776f0..d3da9e1 100644 --- a/examples/single_chip/camera_web_server/main/app_httpd.c +++ b/examples/single_chip/camera_web_server/main/app_httpd.c @@ -648,7 +648,7 @@ static esp_err_t index_handler(httpd_req_t *req){ if (s->id.PID == OV3660_PID) { return httpd_resp_send(req, (const char *)index_ov3660_html_gz_start, index_ov3660_html_gz_len); } - return httpd_resp_send(req, (const char *)index_ov2640_html_gz_start, index_ov3660_html_gz_len); + return httpd_resp_send(req, (const char *)index_ov2640_html_gz_start, index_ov2640_html_gz_len); } void app_httpd_main(){