aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/ext/transport/chttp2/transport/bin_decoder.c
diff options
context:
space:
mode:
authorGravatar Yuchen Zeng <zyc@google.com>2016-05-13 17:53:03 -0700
committerGravatar Yuchen Zeng <zyc@google.com>2016-05-13 17:53:03 -0700
commit1a612aa2df70ed139eccc1a2f29c21f6ea79fbfe (patch)
tree299305dbdbb62cc1be70d9ad9121e062fa838e8b /src/core/ext/transport/chttp2/transport/bin_decoder.c
parent3812c7df8c24772a69a676a63ee4b13f06c9df64 (diff)
Use __inline instead of inline
Diffstat (limited to 'src/core/ext/transport/chttp2/transport/bin_decoder.c')
-rw-r--r--src/core/ext/transport/chttp2/transport/bin_decoder.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/ext/transport/chttp2/transport/bin_decoder.c b/src/core/ext/transport/chttp2/transport/bin_decoder.c
index 1caf88e066..d2ebfe4829 100644
--- a/src/core/ext/transport/chttp2/transport/bin_decoder.c
+++ b/src/core/ext/transport/chttp2/transport/bin_decoder.c
@@ -62,7 +62,7 @@ static uint8_t decode_table[] = {
static const uint8_t tail_xtra[4] = {0, 0, 1, 2};
-static inline bool input_is_valid(uint8_t *input_ptr, size_t length) {
+static __inline bool input_is_valid(uint8_t *input_ptr, size_t length) {
size_t i;
for (i = 0; i < length; ++i) {