mirror of
https://github.com/curl/curl.git
synced 2026-04-16 23:51:46 +03:00
http2: declare TU-local variables static
This fixes the following clang warnings: http2.c:184:27: error: no previous extern declaration for non-static variable 'Curl_handler_http2' [-Werror,-Wmissing-variable-declarations] http2.c:204:27: error: no previous extern declaration for non-static variable 'Curl_handler_http2_ssl' [-Werror,-Wmissing-variable-declarations]
This commit is contained in:
parent
092d012441
commit
dc9e4859bb
1 changed files with 2 additions and 2 deletions
|
|
@ -181,7 +181,7 @@ void Curl_http2_setup_conn(struct connectdata *conn)
|
|||
* but will be used at run-time when the protocol is dynamically switched from
|
||||
* HTTP to HTTP2.
|
||||
*/
|
||||
const struct Curl_handler Curl_handler_http2 = {
|
||||
static const struct Curl_handler Curl_handler_http2 = {
|
||||
"HTTP", /* scheme */
|
||||
ZERO_NULL, /* setup_connection */
|
||||
Curl_http, /* do_it */
|
||||
|
|
@ -201,7 +201,7 @@ const struct Curl_handler Curl_handler_http2 = {
|
|||
PROTOPT_STREAM /* flags */
|
||||
};
|
||||
|
||||
const struct Curl_handler Curl_handler_http2_ssl = {
|
||||
static const struct Curl_handler Curl_handler_http2_ssl = {
|
||||
"HTTPS", /* scheme */
|
||||
ZERO_NULL, /* setup_connection */
|
||||
Curl_http, /* do_it */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue