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