Skip to content

Commit c1ea1f5

Browse files
author
Niveditha Ramasubramanian
committed
Linter Issues
1 parent fd41859 commit c1ea1f5

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

PWGDQ/Tasks/qaMatching.cxx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@
4242
#include <unordered_set>
4343
#include <utility>
4444
#include <vector>
45+
#include <cinttypes>
4546

4647
using namespace o2;
4748
using namespace o2::framework;
@@ -2381,7 +2382,7 @@ struct qaMatching {
23812382
if (fQaMatchingAodDebug > 0 && goodMatchFound && isTrueMatch) {
23822383
LOGF(info,
23832384
"[good&true] mchId=%lld trackType=%d p=%.3f pt=%.3f eta=%.3f phi=%.3f",
2384-
static_cast<long long>(mchTrack.globalIndex()),
2385+
static_cast<int64_t>(mchTrack.globalIndex()),
23852386
static_cast<int>(mchTrack.trackType()),
23862387
mchTrack.p(),
23872388
mchTrack.pt(),

0 commit comments

Comments
 (0)