summaryrefslogtreecommitdiff
path: root/grpc/src/core/ext/transport/chttp2/transport/bin_decoder.cc
diff options
context:
space:
mode:
Diffstat (limited to 'grpc/src/core/ext/transport/chttp2/transport/bin_decoder.cc')
-rw-r--r--grpc/src/core/ext/transport/chttp2/transport/bin_decoder.cc6
1 files changed, 4 insertions, 2 deletions
diff --git a/grpc/src/core/ext/transport/chttp2/transport/bin_decoder.cc b/grpc/src/core/ext/transport/chttp2/transport/bin_decoder.cc
index 2906a5d2..4be4cc25 100644
--- a/grpc/src/core/ext/transport/chttp2/transport/bin_decoder.cc
+++ b/grpc/src/core/ext/transport/chttp2/transport/bin_decoder.cc
@@ -18,9 +18,11 @@
#include <grpc/support/port_platform.h>
+#include "src/core/ext/transport/chttp2/transport/bin_decoder.h"
+
#include <grpc/support/alloc.h>
#include <grpc/support/log.h>
-#include "src/core/ext/transport/chttp2/transport/bin_decoder.h"
+
#include "src/core/lib/gpr/string.h"
#include "src/core/lib/slice/slice_internal.h"
#include "src/core/lib/slice/slice_string_helpers.h"
@@ -146,7 +148,7 @@ bool grpc_base64_decode_partial(struct grpc_base64_decode_context* ctx) {
switch (input_tail) {
case 3:
ctx->output_cur[1] = COMPOSE_OUTPUT_BYTE_1(ctx->input_cur);
- /* fallthrough */
+ ABSL_FALLTHROUGH_INTENDED;
case 2:
ctx->output_cur[0] = COMPOSE_OUTPUT_BYTE_0(ctx->input_cur);
}