Skip to content
Snippets Groups Projects
Commit 3d2686bb authored by Craig Tiller's avatar Craig Tiller
Browse files

Fix cast

parent 9d9e4d3e
No related branches found
No related tags found
No related merge requests found
......@@ -100,7 +100,7 @@ void grpc_channel_init_finalize(void) {
void grpc_channel_init_shutdown(void) {
for (int i = 0; i < GRPC_NUM_CHANNEL_STACK_TYPES; i++) {
gpr_free(g_slots[i].slots);
g_slots[i].slots = (void *)0xdeadbeef;
g_slots[i].slots = (void *)(uintptr_t)0xdeadbeef;
}
}
......
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