Fixed syntax error in esp_http_server.rst

Changed the "const char[] name" into "const char name[]", so now the code doesn't produce the "expected identifier or '(' before '[' token" error.

Closes https://github.com/espressif/esp-idf/pull/3940
This commit is contained in:
Michael 2019-08-19 19:46:47 +02:00 committed by Mahavir Jain
parent 02c7c3885e
commit b7e73025fe

View file

@ -22,7 +22,7 @@ Application Example
esp_err_t get_handler(httpd_req_t *req)
{
/* Send a simple response */
const char[] resp = "URI GET Response";
const char resp[] = "URI GET Response";
httpd_resp_send(req, resp, strlen(resp));
return ESP_OK;
}
@ -55,7 +55,7 @@ Application Example
}
/* Send a simple response */
const char[] resp = "URI POST Response";
const char resp[] = "URI POST Response";
httpd_resp_send(req, resp, strlen(resp));
return ESP_OK;
}