diff options
author | Daniel Stenberg <daniel@haxx.se> | 2014-10-03 23:49:39 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2014-10-03 23:49:39 +0200 |
commit | 3aa899929df4902082b5bcac7be5ecc9b619c70f (patch) | |
tree | 7fe1b2d33d958c89bdcbbcfe70adf0e42ee78041 | |
parent | b0bfae19636aa01937a683fa248a8dfb3a555992 (diff) |
Curl_debug: document switch fallthroughs
-rw-r--r-- | lib/sendf.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/sendf.c b/lib/sendf.c index 4a87c79dd..8e50111b3 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; |