Skip to content
Snippets Groups Projects
Commit 8f4e42cf authored by nnoble's avatar nnoble Committed by Nicolas Noble
Browse files

Shutting off warning by properly truncating values.

	Change on 2014/12/11 by nnoble <nnoble@google.com>
-------------
Created by MOE: http://code.google.com/p/moe-java
MOE_MIGRATED_REVID=81924726
parent 9a58df08
No related branches found
No related tags found
No related merge requests found
......@@ -948,14 +948,14 @@ static void send_ping(grpc_transport *gt, void (*cb)(void *user_data),
gpr_realloc(t->pings, sizeof(outstanding_ping) * t->ping_capacity);
}
p = &t->pings[t->ping_count++];
p->id[0] = t->ping_counter >> 56;
p->id[1] = t->ping_counter >> 48;
p->id[2] = t->ping_counter >> 40;
p->id[3] = t->ping_counter >> 32;
p->id[4] = t->ping_counter >> 24;
p->id[5] = t->ping_counter >> 16;
p->id[6] = t->ping_counter >> 8;
p->id[7] = t->ping_counter;
p->id[0] = (t->ping_counter >> 56) & 0xff;
p->id[1] = (t->ping_counter >> 48) & 0xff;
p->id[2] = (t->ping_counter >> 40) & 0xff;
p->id[3] = (t->ping_counter >> 32) & 0xff;
p->id[4] = (t->ping_counter >> 24) & 0xff;
p->id[5] = (t->ping_counter >> 16) & 0xff;
p->id[6] = (t->ping_counter >> 8) & 0xff;
p->id[7] = t->ping_counter & 0xff;
p->cb = cb;
p->user_data = user_data;
gpr_slice_buffer_add(&t->qbuf, grpc_chttp2_ping_create(0, p->id));
......
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