Skip to content

Commit

Permalink
TPC: fix fmt formatting error
Browse files Browse the repository at this point in the history
  • Loading branch information
wiechula committed Nov 20, 2023
1 parent 093db2b commit 355d007
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Common/Utils/src/DebugStreamer.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ bool o2::utils::DebugStreamer::checkStream(const StreamFlags streamFlag, const s
if (sampling.first != SamplingTypes::sampleAll) {
auto sampleTrack = [&]() {
if (samplingID == -1) {
LOGP(fatal, "Sampling type sampleID not supported for stream flag {}", streamFlag);
LOGP(fatal, "Sampling type sampleID not supported for stream flag {}", (int)streamFlag);
}
// sample on samplingID (e.g. track level)
static thread_local std::unordered_map<StreamFlags, std::pair<size_t, bool>> idMap;
Expand Down

0 comments on commit 355d007

Please sign in to comment.