Skip to content
Snippets Groups Projects
Commit 83448166 authored by Sree Kuchibhotla's avatar Sree Kuchibhotla
Browse files

Merge pull request #4332 from ctiller/bah

Fix typo
parents f6beacf0 d8552ab5
No related branches found
No related tags found
No related merge requests found
......@@ -118,7 +118,7 @@ void grpc_chttp2_encode_data(gpr_uint32 id, gpr_slice_buffer *inbuf,
hdr = gpr_slice_malloc(9);
p = GPR_SLICE_START_PTR(hdr);
GPR_ASSERT(write_bytes < 16777316);
GPR_ASSERT(write_bytes < (1<<24));
*p++ = (gpr_uint8)(write_bytes >> 16);
*p++ = (gpr_uint8)(write_bytes >> 8);
*p++ = (gpr_uint8)(write_bytes);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment