diff options
author | Craig Tiller <ctiller@google.com> | 2015-04-17 14:58:12 -0700 |
---|---|---|
committer | Craig Tiller <ctiller@google.com> | 2015-04-17 14:58:12 -0700 |
commit | 76f5d46d1ba7e2b7c8f5a1b7267a9e4b3dac8549 (patch) | |
tree | 5205beb04284e3f382aa2c761b0535c754515eee /src/core/transport/chttp2 | |
parent | 8b282cbd0b1df8ae07b563b1a11eecb8e3bbe0a6 (diff) |
clang-format
Diffstat (limited to 'src/core/transport/chttp2')
-rw-r--r-- | src/core/transport/chttp2/stream_encoder.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/transport/chttp2/stream_encoder.c b/src/core/transport/chttp2/stream_encoder.c index f50d1428ab..5ca31d6bc7 100644 --- a/src/core/transport/chttp2/stream_encoder.c +++ b/src/core/transport/chttp2/stream_encoder.c @@ -43,7 +43,7 @@ #include "src/core/transport/chttp2/timeout_encoding.h" #include "src/core/transport/chttp2/varint.h" -#define HASH_FRAGMENT_1(x) ((x) & 255) +#define HASH_FRAGMENT_1(x) ((x)&255) #define HASH_FRAGMENT_2(x) ((x >> 8) & 255) #define HASH_FRAGMENT_3(x) ((x >> 16) & 255) #define HASH_FRAGMENT_4(x) ((x >> 24) & 255) |