diff options
author | murgatroid99 <mlumish@google.com> | 2016-01-08 12:33:22 -0800 |
---|---|---|
committer | murgatroid99 <mlumish@google.com> | 2016-01-08 12:33:22 -0800 |
commit | 8b791a4a7f784fb367af6e56c2596c578e974338 (patch) | |
tree | ab7baa05c08aeac191768fadc766866434beb36b /src/core/statistics/census_tracing.c | |
parent | c357749b48720e00bce57c26acb2195047d63263 (diff) | |
parent | b47eab53dec9a6d811ad26e0873dc7ec1bac7d46 (diff) |
Merged from master and resolved merge conflicts
Diffstat (limited to 'src/core/statistics/census_tracing.c')
-rw-r--r-- | src/core/statistics/census_tracing.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/statistics/census_tracing.c b/src/core/statistics/census_tracing.c index ecbe27e536..dc0f8a26f5 100644 --- a/src/core/statistics/census_tracing.c +++ b/src/core/statistics/census_tracing.c @@ -68,14 +68,14 @@ static const census_ht_option ht_opt = { static gpr_once g_init_mutex_once = GPR_ONCE_INIT; static gpr_mu g_mu; /* Guards following two static variables. */ static census_ht *g_trace_store = NULL; -static gpr_uint64 g_id = 0; +static uint64_t g_id = 0; static census_ht_key op_id_as_key(census_op_id *id) { return *(census_ht_key *)id; } -static gpr_uint64 op_id_2_uint64(census_op_id *id) { - gpr_uint64 ret; +static uint64_t op_id_2_uint64(census_op_id *id) { + uint64_t ret; memcpy(&ret, id, sizeof(census_op_id)); return ret; } |