summaryrefslogtreecommitdiffstats
path: root/lib/cf-haproxy.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/cf-haproxy.c')
-rw-r--r--lib/cf-haproxy.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/cf-haproxy.c b/lib/cf-haproxy.c
index 1ca4393..c062887 100644
--- a/lib/cf-haproxy.c
+++ b/lib/cf-haproxy.c
@@ -125,7 +125,7 @@ static CURLcode cf_haproxy_connect(struct Curl_cfilter *cf,
if(result)
goto out;
ctx->state = HAPROXY_SEND;
- /* FALLTHROUGH */
+ FALLTHROUGH();
case HAPROXY_SEND:
len = Curl_dyn_len(&ctx->data_out);
if(len > 0) {
@@ -141,7 +141,7 @@ static CURLcode cf_haproxy_connect(struct Curl_cfilter *cf,
}
}
ctx->state = HAPROXY_DONE;
- /* FALLTHROUGH */
+ FALLTHROUGH();
default:
Curl_dyn_free(&ctx->data_out);
break;