]> granicus.if.org Git - curl/commitdiff
libtest: fix implicit-fallthrough warnings with GCC 7
authorMarcel Raad <raad@teamviewer.com>
Sat, 3 Jun 2017 18:12:23 +0000 (20:12 +0200)
committerMarcel Raad <raad@teamviewer.com>
Sat, 3 Jun 2017 18:12:23 +0000 (20:12 +0200)
tests/libtest/lib552.c
tests/libtest/testtrace.c

index c1266c763e9082d6ca0002c4433578ac13111bf4..3a93dafafa3b2b35ae5fe696f7f3f800063cc99e 100644 (file)
@@ -92,6 +92,7 @@ int my_trace(CURL *handle, curl_infotype type,
   switch(type) {
   case CURLINFO_TEXT:
     fprintf(stderr, "== Info: %s", (char *)data);
+    /* FALLTHROUGH */
   default: /* in case a new one is introduced to shock us */
     return 0;
 
index 5eeeeb65da05aa0ffee80f1ebf9720cbba9ad2ae..62641e15c794a47d8ea9f9b916063a2141e200d5 100644 (file)
@@ -113,6 +113,7 @@ int libtest_debug_cb(CURL *handle, curl_infotype type,
   switch(type) {
   case CURLINFO_TEXT:
     fprintf(stderr, "%s== Info: %s", timestr, (char *)data);
+    /* FALLTHROUGH */
   default: /* in case a new one is introduced to shock us */
     return 0;