Reference code fixed.

Merges https://github.com/espressif/esp-idf/pull/10469
This commit is contained in:
archen 2022-12-31 14:43:44 +00:00 committed by Harshit Malpani
parent 0025915dc4
commit ed1b2ba60e
No known key found for this signature in database
GPG Key ID: FF1193D150EF75C3

View File

@ -22,7 +22,7 @@ HTTP Server 组件提供了在 ESP32 上运行轻量级 Web 服务器的功能
esp_err_t get_handler(httpd_req_t *req)
{
/* 发送回简单的响应数据包 */
const char[] resp = "URI GET Response";
const char resp[] = "URI GET Response";
httpd_resp_send(req, resp, HTTPD_RESP_USE_STRLEN);
return ESP_OK;
}
@ -55,7 +55,7 @@ HTTP Server 组件提供了在 ESP32 上运行轻量级 Web 服务器的功能
}
/* 发送简单的响应数据包 */
const char[] resp = "URI POST Response";
const char resp[] = "URI POST Response";
httpd_resp_send(req, resp, HTTPD_RESP_USE_STRLEN);
return ESP_OK;
}