summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcel Raad <Marcel.Raad@teamviewer.com>2017-05-24 11:56:38 +0200
committerMarcel Raad <Marcel.Raad@teamviewer.com>2017-05-24 11:56:38 +0200
commitb4d87f54d60711e936fefae388d741b281eecdf0 (patch)
tree1993fa59599a6cbf553b49b171269cea5718fa32
parentdf45f2c33e1c916d62d7f5e794c6015fc3b51c01 (diff)
downloadcurl-b4d87f54d60711e936fefae388d741b281eecdf0.tar.gz
examples: fix Wimplicit-fallthrough warnings
This is contained in -Wextra with GCC 7.
-rw-r--r--docs/examples/debug.c1
-rw-r--r--docs/examples/http2-download.c1
-rw-r--r--docs/examples/http2-serverpush.c1
-rw-r--r--docs/examples/http2-upload.c1
-rw-r--r--docs/examples/multi-debugcallback.c1
5 files changed, 5 insertions, 0 deletions
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;