gnunet-svn
[Top][All Lists]
Advanced

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

[GNUnet-SVN] [gnurl] 169/254: examples: fix Wimplicit-fallthrough warnin


From: gnunet
Subject: [GNUnet-SVN] [gnurl] 169/254: examples: fix Wimplicit-fallthrough warnings
Date: Sat, 17 Jun 2017 16:53:21 +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 b4d87f54d60711e936fefae388d741b281eecdf0
Author: Marcel Raad <address@hidden>
AuthorDate: Wed May 24 11:56:38 2017 +0200

    examples: fix Wimplicit-fallthrough warnings
    
    This is contained in -Wextra with GCC 7.
---
 docs/examples/debug.c               | 1 +
 docs/examples/http2-download.c      | 1 +
 docs/examples/http2-serverpush.c    | 1 +
 docs/examples/http2-upload.c        | 1 +
 docs/examples/multi-debugcallback.c | 1 +
 5 files changed, 5 insertions(+)

diff --git a/docs/examples/debug.c b/docs/examples/debug.c
index cbf1c1106..e8a87ea4c 100644
--- a/docs/examples/debug.c
+++ b/docs/examples/debug.c
@@ -91,6 +91,7 @@ int my_trace(CURL *handle, curl_infotype type,
   switch(type) {
   case CURLINFO_TEXT:
     fprintf(stderr, "== Info: %s", data);
+    /* FALLTHROUGH */
   default: /* in case a new one is introduced to shock us */
     return 0;
 
diff --git a/docs/examples/http2-download.c b/docs/examples/http2-download.c
index 8c0b0876e..8e28eaa73 100644
--- a/docs/examples/http2-download.c
+++ b/docs/examples/http2-download.c
@@ -117,6 +117,7 @@ int my_trace(CURL *handle, curl_infotype type,
   switch(type) {
   case CURLINFO_TEXT:
     fprintf(stderr, "== %d Info: %s", num, data);
+    /* FALLTHROUGH */
   default: /* in case a new one is introduced to shock us */
     return 0;
 
diff --git a/docs/examples/http2-serverpush.c b/docs/examples/http2-serverpush.c
index 5aae6afdc..b497e76a9 100644
--- a/docs/examples/http2-serverpush.c
+++ b/docs/examples/http2-serverpush.c
@@ -96,6 +96,7 @@ int my_trace(CURL *handle, curl_infotype type,
   switch(type) {
   case CURLINFO_TEXT:
     fprintf(stderr, "== Info: %s", data);
+    /* FALLTHROUGH */
   default: /* in case a new one is introduced to shock us */
     return 0;
 
diff --git a/docs/examples/http2-upload.c b/docs/examples/http2-upload.c
index 01dfc0b3d..43809ab69 100644
--- a/docs/examples/http2-upload.c
+++ b/docs/examples/http2-upload.c
@@ -136,6 +136,7 @@ int my_trace(CURL *handle, curl_infotype type,
   switch(type) {
   case CURLINFO_TEXT:
     fprintf(stderr, "%s [%d] Info: %s", timebuf, num, data);
+    /* FALLTHROUGH */
   default: /* in case a new one is introduced to shock us */
     return 0;
 
diff --git a/docs/examples/multi-debugcallback.c 
b/docs/examples/multi-debugcallback.c
index be241fc72..07f044b4e 100644
--- a/docs/examples/multi-debugcallback.c
+++ b/docs/examples/multi-debugcallback.c
@@ -99,6 +99,7 @@ int my_trace(CURL *handle, curl_infotype type,
   switch(type) {
   case CURLINFO_TEXT:
     fprintf(stderr, "== Info: %s", data);
+    /* FALLTHROUGH */
   default: /* in case a new one is introduced to shock us */
     return 0;
 

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



reply via email to

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