gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] [gnurl] 44/254: http2: declare TU-local variables static


From: gnunet
Subject: [GNUnet-SVN] [gnurl] 44/254: http2: declare TU-local variables static
Date: Sat, 17 Jun 2017 16:51:16 +0200

This is an automated email from the git hooks/post-receive script.

ng0 pushed a commit to annotated tag gnurl-7.54.1
in repository gnurl.

commit dc9e4859bb50e4d438dbbb016870effea395b624
Author: Marcel Raad <address@hidden>
AuthorDate: Sun Apr 30 22:33:33 2017 +0200

    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]
---
 lib/http2.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/lib/http2.c b/lib/http2.c
index 264c66700..7f891ed32 100644
--- a/lib/http2.c
+++ b/lib/http2.c
@@ -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 */

-- 
To stop receiving notification emails like this one, please contact
address@hidden



reply via email to

[Prev in Thread] Current Thread [Next in Thread]