Skip to content

Commit 8d6b1cc

Browse files
authored
DPL: avoid unintialised member (AliceO2Group#14449)
Not actually used in this particular case, however better safe than sorry.
1 parent e4108ce commit 8d6b1cc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Framework/Core/src/DataRelayer.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -692,7 +692,7 @@ DataRelayer::RelayChoice
692692
}
693693
index.publishSlot(slot);
694694
index.markAsDirty(slot, true);
695-
return RelayChoice{.type = RelayChoice::Type::WillRelay};
695+
return RelayChoice{.type = RelayChoice::Type::WillRelay, .timeslice = timeslice};
696696
}
697697
O2_BUILTIN_UNREACHABLE();
698698
}

0 commit comments

Comments
 (0)