From: Daniel Stenberg Date: Fri, 3 Oct 2014 21:49:39 +0000 (+0200) Subject: Curl_debug: document switch fallthroughs X-Git-Tag: curl-7_39_0~188 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3aa899929df4902082b5bcac7be5ecc9b619c70f;p=thirdparty%2Fcurl.git Curl_debug: document switch fallthroughs --- diff --git a/lib/sendf.c b/lib/sendf.c index 4a87c79dd9..8e50111b3e 100644 --- a/lib/sendf.c +++ b/lib/sendf.c @@ -661,11 +661,13 @@ int Curl_debug(struct SessionHandle *data, curl_infotype type, switch (type) { case CURLINFO_HEADER_IN: w = "Header"; + /* FALLTHROUGH */ case CURLINFO_DATA_IN: t = "from"; break; case CURLINFO_HEADER_OUT: w = "Header"; + /* FALLTHROUGH */ case CURLINFO_DATA_OUT: t = "to"; break;