Skip to content

Commit

Permalink
Merge pull request grpc#4332 from ctiller/bah
Browse files Browse the repository at this point in the history
Fix typo
  • Loading branch information
sreecha committed Dec 8, 2015
2 parents f6beacf + d8552ab commit 8344816
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/transport/chttp2/frame_data.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 8344816

Please sign in to comment.