examples: fix Wimplicit-fallthrough warnings

This is contained in -Wextra with GCC 7.
This commit is contained in:
Marcel Raad 2017-05-24 11:56:38 +02:00
parent df45f2c33e
commit b4d87f54d6
No known key found for this signature in database
GPG key ID: 33C416EFAE4D6F02
5 changed files with 5 additions and 0 deletions

View file

@ -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;