Explicit conversion

pull/17331/head
Yash Tibrewal 6 years ago
parent 77ba25ab72
commit 575da5118a
  1. 2
      src/core/ext/transport/chttp2/transport/context_list.cc

@ -32,7 +32,7 @@ void ContextList::Execute(void* arg, grpc_core::Timestamps* ts,
while (head != nullptr) {
if (error == GRPC_ERROR_NONE && ts != nullptr) {
if (write_timestamps_callback_g) {
ts->byte_offset = head->byte_offset_;
ts->byte_offset = static_cast<uint32_t>(head->byte_offset_);
write_timestamps_callback_g(head->s_->context, ts);
}
}

Loading…
Cancel
Save