Bug 1766377 - Fixup after ccb0fe2d2fcf

Differential Revision: https://phabricator.services.mozilla.com/D145046
This commit is contained in:
Mike Hommey 2022-04-29 00:43:30 +00:00
Родитель 92953cf50f
Коммит fa9c3e047a
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -16,7 +16,7 @@ void AddIPCProfilerMarker(const Message& aMessage, int32_t aOtherPid,
mozilla::ipc::MessagePhase aPhase) {
if (aMessage.routing_id() != MSG_ROUTING_NONE &&
profiler_feature_active(ProfilerFeature::IPCMessages)) {
if (aOtherPid == base::kInvalidProcessId) {
if (static_cast<base::ProcessId>(aOtherPid) == base::kInvalidProcessId) {
DLOG(WARNING) << "Unable to record IPC profile marker, other PID not set";
return;
}