aboutsummaryrefslogtreecommitdiff
path: root/docs/examples/http2-upload.c
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 /docs/examples/http2-upload.c
parentdf45f2c33e1c916d62d7f5e794c6015fc3b51c01 (diff)
examples: fix Wimplicit-fallthrough warnings
This is contained in -Wextra with GCC 7.
Diffstat (limited to 'docs/examples/http2-upload.c')
-rw-r--r--docs/examples/http2-upload.c1
1 files changed, 1 insertions, 0 deletions
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;