Skip to content

Commit

Permalink
Merge "tracing_service_impl: Fix build on windows" into main
Browse files Browse the repository at this point in the history
  • Loading branch information
Kirill Timofeev authored and Gerrit Code Review committed Dec 13, 2024
2 parents 46bab18 + 304bb71 commit e463a6f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tracing/service/tracing_service_impl.cc
Original file line number Diff line number Diff line change
Expand Up @@ -4596,7 +4596,7 @@ void TracingServiceImpl::ConsumerEndpointImpl::NotifyCloneSnapshotTrigger(
clone_trig->set_tracing_session_id(static_cast<int64_t>(tracing_session_id_));
clone_trig->set_trigger_name(trigger.trigger_name);
clone_trig->set_producer_name(trigger.producer_name);
clone_trig->set_producer_uid(trigger.producer_uid);
clone_trig->set_producer_uid(static_cast<uint32_t>(trigger.producer_uid));
clone_trig->set_boot_time_ns(trigger.boot_time_ns);
}

Expand Down

0 comments on commit e463a6f

Please sign in to comment.